提交 c5a6c73a 编写于 作者: jackymao.com's avatar jackymao.com

add rustup_usage

上级 9b8fc534
...@@ -2,7 +2,9 @@ ...@@ -2,7 +2,9 @@
"node_id": "rust-9727d29f9a2140f7acf75a5d80057e9d", "node_id": "rust-9727d29f9a2140f7acf75a5d80057e9d",
"keywords": [], "keywords": [],
"children": [], "children": [],
"export": [], "export": [
"rustup_usage.json"
],
"keywords_must": [], "keywords_must": [],
"keywords_forbid": [] "keywords_forbid": []
} }
\ No newline at end of file
{
"type": "code_options",
"author": "jacky_rust",
"source": "rustup_usage.md",
"notebook_enable": false,
"exercise_id": "10ea7a4735644f6d8ede35025224887a"
}
\ No newline at end of file
# Rustup 的使用
Rustup 的前身是 multirust,看名字就可以知道 multirust 是用来管理电脑上多个 rust 环境的工具。 后来 Diggory Blake 重写并命名为 Rustup, 现在由 The Rust Project 维护,是一个官方的 Rust 项目。
当你需要在 stable 版本和 nightly 版本切换,或需要切换编译目标(如编译成 wasm)时,都离不开 Rustup。
以下哪个命令不是 rustup 命令的正确使用:
## 答案
### clippy 是 cargo 的一个非常有用的 lint 工具,在学习 rust 的时候不时运行 cargo clippy 会学到很多有用的写法。
rustup clippy
## 选项
### A
rustup component list
### B
rustup run stable rustc --version
### C
rustup show
### D
rustup update
### E
rustup self update
<!--
参考链接:
https://rust-lang.github.io/rustup/
-->
\ No newline at end of file
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册