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) 的触发器 ...
相关推荐
Buleall4 分钟前
期末考学C
java·开发语言
重生之绝世牛码6 分钟前
Java设计模式 —— 【结构型模式】外观模式详解
java·大数据·开发语言·设计模式·设计原则·外观模式
小蜗牛慢慢爬行12 分钟前
有关异步场景的 10 大 Spring Boot 面试问题
java·开发语言·网络·spring boot·后端·spring·面试
Algorithm157622 分钟前
云原生相关的 Go 语言工程师技术路线(含博客网址导航)
开发语言·云原生·golang
shinelord明31 分钟前
【再谈设计模式】享元模式~对象共享的优化妙手
开发语言·数据结构·算法·设计模式·软件工程
A小白590834 分钟前
Docker部署实践:构建可扩展的AI图像/视频分析平台 (脱敏版)
后端
Monly2138 分钟前
Java(若依):修改Tomcat的版本
java·开发语言·tomcat
boligongzhu39 分钟前
DALSA工业相机SDK二次开发(图像采集及保存)C#版
开发语言·c#·dalsa
Eric.Lee202139 分钟前
moviepy将图片序列制作成视频并加载字幕 - python 实现
开发语言·python·音视频·moviepy·字幕视频合成·图像制作为视频
goTsHgo41 分钟前
在 Spring Boot 的 MVC 框架中 路径匹配的实现 详解
spring boot·后端·mvc