Lets Start Learning Rust Programming Language
Installing rustup on Windows
Go To the Link and Downloads Rustup exe file.
https://www.rust-lang.org/tools/install
Run The exe File and Type 1 Then Press Enter. installing...................
Installing rustup on Linux or macOS
Run The Bellow Commend in your terminal.
curl --proto '=https' --tlsv1.3 https://sh.rustup.rs -sSf | sh
To check whether you have Rust installed correctly, open a shell and enter this line:
rustc --version
Updating and Uninstalling
Once Rust is installed via rustup, when a new version of Rust is released, updating to the latest version is easy. From your shell, run the following update script:
rustup update
To uninstall Rust and rustup, run the following uninstall script from your shell:
rustup self uninstall
learn more From official Book
Rust Book
Top comments (0)