安裝 rust
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
Is Rust up to date?
Rust updates very frequently. If you have installed Rustup some time ago, chances are your Rust version is out of date. Get the latest version of Rust by running
rustup update
.
參考文章:Quickly set up a Rust development environment and write a small app!
配置 rust 基礎環境變數
把下面的內容新增到環境變數檔案中
. "$HOME/.cargo/env"
配置 rustup 映象
使用 rustup
前,先設定環境變數 RUSTUP_DIST_SERVER
(用於更新 toolchain
):
export RUSTUP_DIST_SERVER=https://mirrors.ustc.edu.cn/rust-static
以及 RUSTUP_UPDATE_ROOT
(用於更新 rustup
):
export RUSTUP_UPDATE_ROOT=https://mirrors.ustc.edu.cn/rust-static/rustup
配置 cargo 環境變數
在 $HOME/.cargo/config
中新增如下內容:
[source.crates-io]
replace-with = 'ustc'
[source.ustc]
registry = "git://mirrors.ustc.edu.cn/crates.io-index"
參考文章:Rust Crates 源使用幫助
參考文章:使用國內映象安裝Rust開發環境
使用 vscode remote ssh
遠端編輯 rust
程式碼?
使用 clion
本地編輯 rust
程式碼?