Installing Rust on Linux

Rust is a multi-paradigm system programming language focused on safety, especially safe concurrency. Rust is syntactically similar to C++, but is designed to provide better memory safety while maintaining high performance.

https://www.rust-lang.org/

Installing rust is very simple on Linux (Ubuntu or Mint). Just execute the below command on terminal and it will take care of its own.

curl https://sh.rustup.rs -sSf | sh

To verify that rust is installed, execute the below command in terminal.

rustc –version

For more help go to below documentation.

https://doc.rust-lang.org/nightly/book/ch01-01-installation.html

Add a Comment

Your email address will not be published. Required fields are marked *