如何在Linux中安装Rust编程语言
2020-07-12 本文已影响0人
Then丶
在Linux中安装Rust编程语言
终端执行
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
选1 确定
安装完成后
vim ~/.profile
#添加下面命令到末尾即可。
export PATH="$HOME/.cargo/bin:$PATH"
接下来,使用修改后的PATH来源~/.profile文件,并通过运行这些命令配置当前shell以使用Rust环境。
source ~/.profile
source ~/.cargo/env
查看Rust的版本:
rustc --version