安装 Rust for Linux
Rust 支持主流的操作系统,包括 Linux、Mac 和 Windows。
Rust 为 Linux 提供了两种安装方式:rustup 安装 和 安装包安装 。
1. rustup 安装 Rust
rustup 安装可以使用命令行一键安装的方式,通过先下载 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-linux-gnu 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
结果下所示:
Linux iZuf6eh81ypipckei81so1Z 3.10.0-1127.19.1.el7.x86_64 #1 SMP Tue Aug 25 17:23:54 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux
如果是 x86_64 则说明是 64 位系统,需要下载 64 位安装包:https://static.rust-lang.org/dist/rust-1.5.0-x86_64-unknown-linux-gnu.tar.gz;
如果是 x86-32 则说明是32 位系统,需要下载 32 位安装包:https://static.rust-lang.org/dist/rust-1.5.0-i686-unknown-linux-gnu.tar.gz。
下载安装包后解压运行即可。
# 解压安装包 $ tar -zxvf rust-1.5.0-x86_64-unknown-linux-gnu.tar.gz # 进入解压后的目录 $ cd rust-1.5.0-x86_64-unknown-linux-gnu # 执行安装脚本 $ ./install.sh
3. 验证安装是否成功
执行 Rust 编译命令 rustc :
$ rustc --version
如果结果输出 Rust 版本信息,表明安装成功:
rustc 1.51.0 (2fd73fabe 2021-03-23)
下一章:Mac Rust 安装
安装 Rust for Mac:Rust 支持主流的操作系统,包括 Linux、Mac 和 Windows。Rust 为 Mac 提供了三种安装方式:安装包安装、rustup 安装 和 Homebrew 安装。命令行一键安装 Rust:命令行一键安装的方式是通过先下载 Rust 版本管理工具 rustup,然后由 rustup 进行安装。Homebrew 安装 Rust:使用 Homebrew 安装 Rust。在终端执行如下命令:brew install rust。