在 Mac 环境下,利用 brew 包管理,十分方便。
- brew upgrade
- brew install rustup-init
- 进入/opt/homebrew/Cellar/rustup-init/1.24.3/bin
- 运行 rustup-init
1) Proceed with installation (default) //默认安装
2) Customize installation //自定义安装
3) Cancel installation //取消安装
我选的是第 1 个。
- 屏幕出现成功字样Rust is installed now. Great!
- 最后执行这句,让环境变量生效 source $HOME/.cargo/env
- 再打开终端
rustc -V
屏幕输出 rustc 1.59.0
出现上面的提示,证明你的 Rust 环境安装好了。