Skip to content

Latest commit

 

History

History
29 lines (19 loc) · 1.14 KB

File metadata and controls

29 lines (19 loc) · 1.14 KB

Installing Rust

Prerequisites

Before installing Rust, you need to ensure that your system has C++ compiler tools, especially for Windows users. These tools are provided by Visual Studio.

  1. Download Visual Studio Build Tools
    Download them here.

  2. Once downloaded, follow the installation instructions to set up the build tools.

Installing Rust

For Windows

  1. Download the Rust installer for Windows from this link.
  2. Run the downloaded installer.
  3. During installation, choose the option to Proceed with standard installation (you can just press enter for the default).
  4. After the installation is complete, press Enter when prompted.

For Unix-based systems (including WSL)

  1. Open your terminal and run the following command to install Rust:
    curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
  2. Follow the prompts during installation, selecting the default options unless you have specific needs.

Once installed, you'll be prompted to press Enter to complete the process.