rustup-install
Install a specific Rust toolchain
TLDR
Install toolchain
$ rustup install stable
Install nightly$ rustup install nightly
Install specific version$ rustup install [1.70.0]
Install with components$ rustup install nightly --component rust-src
SYNOPSIS
rustup install [options] toolchain...
DESCRIPTION
rustup install downloads and installs Rust toolchains. Alias for rustup toolchain install. Supports stable, beta, nightly, and specific versions.
PARAMETERS
--profile name
Installation profile.--component comp
Add component.--target target
Add target.
SEE ALSO
rustup(1), rustup-toolchain(1), rustup-uninstall(1)
