-
Notifications
You must be signed in to change notification settings - Fork 1
nushell
fengzhao edited this page Apr 9, 2021
·
5 revisions
######################## Install rust on Linux #################################################################
### https://www.rust-lang.org/tools/install
# Install rust on Linux
curl https://sh.rustup.rs -sSf | sh
curl https://sh.rustup.rs -sSf | sh -s -- --help
rustc --version
# WSL
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
######################## Install rust on Linux #################################################################
######################## 使用国内镜像安装rust #################################################################
# 国内镜像
# 由于rustup官方服务器在国外,如果直接按照rust官网的安装方式安装非常容易失败,即使不失败也非常非常慢。
# 如果用国内的镜像则可以分分钟就搞定
# 导出安装脚本
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs > rust.sh
# 修改为国内镜像地址
# If RUSTUP_UPDATE_ROOT is unset or empty, default it.
RUSTUP_UPDATE_ROOT="${RUSTUP_UPDATE_ROOT:-https://static.rust-lang.org/rustup}"
RUSTUP_UPDATE_ROOT="http://mirrors.ustc.edu.cn/rust-static/rustup"
# 修改环境变量
export RUSTUP_DIST_SERVER=https://mirrors.tuna.tsinghua.edu.cn/rustup
# 执行安装脚本
bash rust.sh
######################## 使用国内镜像安装rust #################################################################