3.1 Linux Users

For many Linux distributions, Rust might already be preinstalled or can be easily installed via the distribution’s package manager. Examples include:

  • On Ubuntu or other Debian-based systems, install Rust with:

    sudo apt install rustc
    
  • On Fedora-based systems, use:

    sudo dnf install rust
    
  • On Gentoo Linux, consult Rust for Gentoo and use:

    emerge -av rust
    
  • Arch Linux supports a native installation through its package manager. For details, see Arch Linux.

However, to ensure you always have the latest Rust release and can manage multiple versions easily, it’s often recommended to install Rust using the rustup tool. rustup provides the most current release of Rust and simplifies switching between different versions.

To install Rust using rustup, follow the instructions on the official website or run the following command in your terminal:

curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh