Rust 官網
安裝
使用包管理器
Homebrew:
brew install rust
APT:
sudo apt install cargo
使用官方指令碼
macOS / Linux:
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
解除安裝:
rustup self uninstall
參考:如何在 Ubuntu 和其它的 Linux 發行版安裝 Rust 和 Cargo | Linux 中國
使用
Cargo
Cargo 是 Rust 的構建工具和包管理器。
官方 Cargo 教程:The Cargo Book
cargo build
cargo run
cargo test
cargo install <package>