INSTALLATION
Steps to install Rust:
- On Windows, go to https://www.rust-lang.org/tools/install and follow the instructions for installing Rust. At some point in the installation, you'll receive a message explaing that you'll also need the MSVC build tools for Visual Studio 2013 or later.
- To acquire the build tools, you 'll need to install Visual Studio 2022. When asked which workloads to install include:
- Desktop Development with C++
- The Windows 10 or 11 SDK
- The english language pack compenent along wiht any other language pack of your choosing.
- To check whether you have Rust installed correctly, open a shell and enter the below line:
$ rustc --version
- If Rust is successfully install information in the below is show:
rustc 1.65.0 (897e37553 2022-11-02)
- To uninstall Rust:
$ rustup self uninstall
Comments
Post a Comment