您的位置:首页 > 房产 > 建筑 > 网站建设流程步骤怎么样_上海室内设计有限公司_做网站的平台有哪些_营销网络图

网站建设流程步骤怎么样_上海室内设计有限公司_做网站的平台有哪些_营销网络图

2025/1/8 22:21:52 来源:https://blog.csdn.net/itas109/article/details/144679809  浏览:    关键词:网站建设流程步骤怎么样_上海室内设计有限公司_做网站的平台有哪些_营销网络图
网站建设流程步骤怎么样_上海室内设计有限公司_做网站的平台有哪些_营销网络图

Rust使用国内源加速在线安装开发环境搭建

环境

rust: 1.83.0(2024-11-26)

1. Rustup下载器在线安装

windows:

https://static.rust-lang.org/rustup/dist/x86_64-pc-windows-msvc/rustup-init.exe

unix:

curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh

2. 配置环境变量

windows:

set RUSTUP_DIST_SERVER=https://rsproxy.cn
set RUSTUP_UPDATE_ROOT=https://rsproxy.cn/rustup

unix:

export RUSTUP_DIST_SERVER="https://rsproxy.cn"
export RUSTUP_UPDATE_ROOT="https://rsproxy.cn/rustup"

3. 在线加速安装

./rustup-init

默认安装即可

4. Rust命令行

  • 查看rust版本
rustc -V
rustc 1.83.0 (90b35a623 2024-11-26)
  • 新建rust项目
cargo new hello_world
  • cargo编译rust项目
$ cargo build
  • rustc编译rust项目
$ rustc src/main.rs
  • 运行rust程序
$ ./target/debug/hello_world
Hello, world!

5. IDE集成开发环境

5.1 VSCode

Rust with Visual Studio Code

5.2 vs2022

User Manual

6. 使用镜像加速cargo

$CARGO_HOME/config中加入如下内容

[source.crates-io]
replace-with = 'rsproxy-sparse'
[source.rsproxy]
registry = "https://rsproxy.cn/crates.io-index"
[source.rsproxy-sparse]
registry = "sparse+https://rsproxy.cn/index/"
[registries.rsproxy]
index = "https://rsproxy.cn/crates.io-index"
[net]
git-fetch-with-cli = true

注:$CARGO_HOME:在 Windows 系统默认为:%USERPROFILE%\.cargo,在类 Unix 系统默认为:$HOME/.cargo


Reference:

  1. Other Installation Methods - Rust Forge (rust-lang.org)
  2. https://rsproxy.cn/

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com