rust 安装 本版管理工具rustup安装 rustup 相关命令 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 // 可以查看当前已经安装的toolchain信息 rustup show // 安装指定toolchain // rustup toolchain install <toolchain> // rustup toolchain uninstall <toolchain> rustup toolchain install nightly-2020-03-19 // 安装组件 // rustup component add <component> // rustup component remove <component> rustup component add rust-src // 切换toolchain(设置默认toolchain) // rustup default <toolchain> rustup default nightly-2020-03-19-x86_64-pc-windows-msvc 每个版本的 rust toolchain 分为三个channel nightly, beta 和 stable nightly:激进版,有许多不稳定的新功能。 beta:测试版。 stable:稳定版,相对nightly版会保守很多。 rust 相关命令 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 //========= Cargo ============== //可选参数: --b --lib -p //创建新项目: cargo new //编译: cargo build //运行: cargo run //更新项目依赖: cargo update //执行测试: cargo test //生成文档: cargo doc //静态检查: cargo check //========= rustc ============== //运行.rs文件 rustc xxx.rs //查看rust版本 rustc --version