Rust 安装

curl 方式
bash 复制代码
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
bash 复制代码
# curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
info: downloading installer

Welcome to Rust!

This will download and install the official compiler for the Rust
programming language, and its package manager, Cargo.

Rustup metadata and toolchains will be installed into the Rustup
home directory, located at:

  /root/.rustup

This can be modified with the RUSTUP_HOME environment variable.

The Cargo home directory is located at:

  /root/.cargo

This can be modified with the CARGO_HOME environment variable.

The cargo, rustc, rustup and other commands will be added to
Cargo's bin directory, located at:

  /root/.cargo/bin

This path will then be added to your PATH environment variable by
modifying the profile files located at:

  /root/.profile
  /root/.bashrc

You can uninstall at any time with rustup self uninstall and
these changes will be reverted.

Current installation options:


   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
>1

info: profile set to 'default'
info: default host triple is x86_64-unknown-linux-gnu
info: syncing channel updates for 'stable-x86_64-unknown-linux-gnu'
712.1 KiB / 712.1 KiB (100 %) 247.7 KiB/s in  2s ETA:  0s
info: latest update on 2024-02-08, rust version 1.76.0 (07dca489a 2024-02-04)
info: downloading component 'cargo'
  8.5 MiB /   8.5 MiB (100 %)   1.0 MiB/s in 12s ETA:  0s
info: downloading component 'clippy'
  2.1 MiB /   2.1 MiB (100 %)   1.4 MiB/s in  2s ETA:  0s
info: downloading component 'rust-docs'
 14.7 MiB /  14.7 MiB (100 %)   1.5 MiB/s in 10s ETA:  0s
info: downloading component 'rust-std'
 23.9 MiB /  23.9 MiB (100 %)   1.6 MiB/s in 16s ETA:  0s
info: downloading component 'rustc'
 62.3 MiB /  62.3 MiB (100 %)   4.0 MiB/s in 27s ETA:  0s
info: downloading component 'rustfmt'
info: installing component 'cargo'
info: installing component 'clippy'
info: installing component 'rust-docs'
 14.7 MiB /  14.7 MiB (100 %) 854.4 KiB/s in 55s ETA:  0s
info: installing component 'rust-std'
 23.9 MiB /  23.9 MiB (100 %)   8.0 MiB/s in  7s ETA:  0s
info: installing component 'rustc'
 62.3 MiB /  62.3 MiB (100 %)   9.0 MiB/s in  7s ETA:  0s
info: installing component 'rustfmt'
info: default toolchain set to 'stable-x86_64-unknown-linux-gnu'

  stable-x86_64-unknown-linux-gnu installed - rustc 1.76.0 (07dca489a 2024-02-04)


Rust is installed now. Great!

To get started you may need to restart your current shell.
This would reload your PATH environment variable to include
Cargo's bin directory ($HOME/.cargo/bin).

To configure your current shell, run:
source "$HOME/.cargo/env"

apt 方式
bash 复制代码
apt install rustc cargo
bash 复制代码
# apt install rustc cargo
正在读取软件包列表... 完成
正在分析软件包的依赖关系树... 完成
正在读取状态信息... 完成                 
建议安装:
  cargo-doc llvm-17 lld-17 clang-17
下列【新】软件包将被安装:
  cargo rustc
升级了 0 个软件包,新安装了 2 个软件包,要卸载 0 个软件包,有 0 个软件包未被升级。
需要下载 9,685 kB 的归档。
解压缩后会消耗 30.7 MB 的额外空间。
获取:1 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 rustc amd64 1.73.0+dfsg0ubuntu1~bpo0-0ubuntu0.22.04 [3,341 kB]
获取:2 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 cargo amd64 1.73.0+dfsg0ubuntu1~bpo0-0ubuntu0.22.04 [6,345 kB]
已下载 9,685 kB,耗时 50秒 (192 kB/s)                                                 
正在选中未选择的软件包 rustc。
(正在读取数据库 ... 系统当前共安装有 117222 个文件和目录。)
准备解压 .../rustc_1.73.0+dfsg0ubuntu1~bpo0-0ubuntu0.22.04_amd64.deb  ...
正在解压 rustc (1.73.0+dfsg0ubuntu1~bpo0-0ubuntu0.22.04) ...
正在选中未选择的软件包 cargo。
准备解压 .../cargo_1.73.0+dfsg0ubuntu1~bpo0-0ubuntu0.22.04_amd64.deb  ...
正在解压 cargo (1.73.0+dfsg0ubuntu1~bpo0-0ubuntu0.22.04) ...
正在设置 rustc (1.73.0+dfsg0ubuntu1~bpo0-0ubuntu0.22.04) ...
正在设置 cargo (1.73.0+dfsg0ubuntu1~bpo0-0ubuntu0.22.04) ...
正在处理用于 man-db (2.10.2-1) 的触发器 ...
相关推荐
Spatial Analyst7 分钟前
面向对象进阶基础练习
java·开发语言
小丁爱养花17 分钟前
数据结构(Java):队列&Queue集合&力扣面试OJ题
java·开发语言·数据结构·算法·leetcode·面试
蜗牛学苑_武汉23 分钟前
php上传文件
开发语言·php
小鹿( ﹡ˆoˆ﹡ )2 小时前
Java:构造函数与对象
java·开发语言·python
搁浅小泽5 小时前
C语言编译和编译预处理
c语言·开发语言
云边有个稻草人5 小时前
【C语言】自定义类型:联合和枚举
c语言·开发语言·算法
tonylua6 小时前
Python: 从 2.7 升级到 3,我比 vue 慢了一点点
开发语言·前端·javascript·vue.js·python
大霞上仙6 小时前
Django之登录权限系统
后端·python·django
搬砖写代码6 小时前
【Django项目】基于Python+Django+MySQL的音乐网站系统项目
数据库·后端·python·mysql·django
sunny-ll7 小时前
【C++】继承最全解析(什么是继承?继承有什么用?)
c语言·开发语言·数据结构·c++·算法·青少年编程