Rustup 是官方提供的安装工具,不仅可以下载 Rustc 编译工具,还可以下载各种 Rust 的工具链。
比如在 Linux 下执行: curl https://sh.rustup.rs -sSf | sh 即可。
配置 crate.io 镜像 因为cargo等下载需要连接 crate.io 网络如果不是很好的话会特别慢,可以在$HOME/.cargo/下建立一个config文件,加入如下配置: [source.crates-io] replace-with = 'tuna' [source.tuna] registry = "https://mirrors.tuna.tsinghua.edu.cn/git/crates.io-index.git"安装nightly版本: rustup install nightly && rustup default nightly 安装src : rustup component add rust-src 安装racer: cargo install racer
参考: https://www.jianshu.com/p/5efdd9ce8565 https://www.cnblogs.com/onsunsl/p/rust-cargo-proxy-and-crates-io-china-mirro.html Rust Develop(Learn) Environment