diff --git "a/data/1.rust\345\210\235\351\230\266/1.\351\242\204\345\244\207\347\237\245\350\257\206/2.rust\345\256\211\350\243\205/config.json" "b/data/1.rust\345\210\235\351\230\266/1.\351\242\204\345\244\207\347\237\245\350\257\206/2.rust\345\256\211\350\243\205/config.json" index 711c663af8721547377a7cecececc594648970fa..0ec993590ab16c7cbfb1265f022fc833ace3e20b 100644 --- "a/data/1.rust\345\210\235\351\230\266/1.\351\242\204\345\244\207\347\237\245\350\257\206/2.rust\345\256\211\350\243\205/config.json" +++ "b/data/1.rust\345\210\235\351\230\266/1.\351\242\204\345\244\207\347\237\245\350\257\206/2.rust\345\256\211\350\243\205/config.json" @@ -23,5 +23,7 @@ } } ], - "export": [] + "export": [ + "rust_install.json" + ] } \ No newline at end of file diff --git "a/data/1.rust\345\210\235\351\230\266/1.\351\242\204\345\244\207\347\237\245\350\257\206/2.rust\345\256\211\350\243\205/rust_install.json" "b/data/1.rust\345\210\235\351\230\266/1.\351\242\204\345\244\207\347\237\245\350\257\206/2.rust\345\256\211\350\243\205/rust_install.json" new file mode 100644 index 0000000000000000000000000000000000000000..0064b18dd8fa88d2ae738043191f21c4bb06eb9b --- /dev/null +++ "b/data/1.rust\345\210\235\351\230\266/1.\351\242\204\345\244\207\347\237\245\350\257\206/2.rust\345\256\211\350\243\205/rust_install.json" @@ -0,0 +1,6 @@ +{ + "type": "code_options", + "author": "jacky_rust", + "source": "rust_install.md", + "notebook_enable": false + } \ No newline at end of file diff --git "a/data/1.rust\345\210\235\351\230\266/1.\351\242\204\345\244\207\347\237\245\350\257\206/2.rust\345\256\211\350\243\205/rust_install.md" "b/data/1.rust\345\210\235\351\230\266/1.\351\242\204\345\244\207\347\237\245\350\257\206/2.rust\345\256\211\350\243\205/rust_install.md" new file mode 100644 index 0000000000000000000000000000000000000000..cb146eefe7530506d6b2ba52f98d494ee6b93437 --- /dev/null +++ "b/data/1.rust\345\210\235\351\230\266/1.\351\242\204\345\244\207\347\237\245\350\257\206/2.rust\345\256\211\350\243\205/rust_install.md" @@ -0,0 +1,33 @@ +# Rust 的安装 + +Rust 有 [在线操练场](https://play.rust-lang.org) 可以写一些简短代码来验证这些代码片断是否能正确编译和运行。 + +如果是需要写命令行程序或网络编程等稍复杂一点的应用,就需要在自己的电脑上安装 Rust 了。 + +好消息是,Rust 有 rustup 程序来安装整个工具链,而且用它也方便未来升级 Rust 版本和在有必要的时候在 stable、beta 和 nightly 版本之间切换。rustup 网站地址是: https://rustup.rs/ + +以下关于 rustup 命令使用,错误的选项是: + +## 答案 + +rustup upgrade os-system + +## 选项 + +### A + +rustup update + +### B + +rustup self update + +### C + +rustup default stable + + \ No newline at end of file