安装 Rust for Mac

Rust 支持主流的操作系统,包括 Linux、Mac 和 Windows。

Rust 为 Mac 提供了三种安装方式:rustup 安装、安装包安装 和 Homebrew 安装。

 

1. rustup 安装 Rust

命令行一键安装的方式是通过先下载 Rust 版本管理工具 rustup,然后由 rustup 进行安装。

Rust 一键安装的命令如下:

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

打开终端执行如上命令,这个过程中可能需要你输入几次密码,运行结果:

info: downloading installer
Warning: Not enforcing strong cipher suites for TLS, this is potentially less secure
Welcome to Rust!
....
   default host triple: x86_64-unknown-darwin
     default toolchain: stable (default)
               profile: default
  modify PATH variable: yes

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

 

2. 安装包安装 Rust

直接下载安装包的话需要检查一下你当前操作系统是 64 位还是 32 位,分别下载对应的安装包。

Rust 安装包下载位置:https://forge.rust-lang.org/infra/other-installation-methods.html

查看操作系统请在终端执行如下命令:

$ uname -a

结果下所示:

Darwin codebaokuMacBook-Pro.local 18.2.0 Darwin Kernel Version 18.2.0: Fri Oct  5 19:41:49 PDT 2018; root:xnu-4903.221.2~2/RELEASE_X86_64 x86_64

如果是 x86_64 则说明是 64 位系统,需要下载 64 位安装包:https://static.rust-lang.org/dist/rust-1.5.0-x86_64-apple-darwin.pkg

如果是 x86-32 则说明是 32 位系统,需要下载 32 位安装包:https://static.rust-lang.org/dist/rust-1.5.0-i686-apple-darwin.pkg

下载安装包点击运行即可完成安装。

 

3. Homebrew 安装 Rust

使用 Homebrew 安装 Rust。在终端执行如下命令:

$ brew install rust

运行结果:

...
This command may take a few minutes to run due to the large size of the repository.
...
==> Downloading https://homebrew.bintray.com/bottles/rust-1.50.0.mojave.bottle.tar.gz
...

 

4. 验证安装是否成功

执行 Rust 编译命令 rustc :

$ rustc --version

如果结果输出 Rust 版本信息,表明安装成功:

rustc 1.51.0 (2fd73fabe 2021-03-23)

安装 Rust for Windows:Rust 支持主流的操作系统,包括 Linux、Mac 和 Windows。Rust 在 Windows 上的安装和其它软件一样,直接运行安装程序,按照提示操作即可。步骤包括:下载安装包 Rust for Windows、安装 Rust for Windows、 验证安装是否成功。