liujiusheng / blog

个人博客,blog
19 stars 0 forks source link

在Docker中使用rust #220

Open liujiusheng opened 2 years ago

liujiusheng commented 2 years ago

Rust官方安装教程:

https://forge.rust-lang.org/infra/other-installation-methods.html

安装方法:

1.执行安装命令

curl https://sh.rustup.rs -sSf | sh

2.选择安装模式

执行第一步后并不会直接安装完成,会要求选择要安装的模式,有以下三个选项

1) Proceed with installation (default)
2) Customize installation
3) Cancel installation

选择1,即默认模式

3.配置cargo的环境变量

安装成功后会提示我们重启命令行或者通过以下命令直接设置环境变量: source $HOME/.cargo/env

实际执行过程中可能会提示: 4: source: not found

在Docker下直接重新进入命令行的方法好像也不行,所以需要用以下命令设置:

export PATH="$HOME/.cargo/bin:$PATH"

如果设置成功则在命令行可以直接执行cargo命令,若不成功则为提示cargo: not found