Rust
Install the Rust toolchain (rustc, cargo, rustup) with the official rustup script.
Source
Install
bash
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | shFollow prompts (default stable toolchain is fine for most work). Restart the shell or source "$HOME/.cargo/env".
Verify
bash
rustc --version
cargo --versionUseful rustup commands
bash
rustup update # upgrade toolchains
rustup target add wasm32-unknown-unknown
rustup component add clippy rustfmt