Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 619 Bytes

installing_rust.md

File metadata and controls

24 lines (16 loc) · 619 Bytes

Installing Rust

To install Rust, visits its website. Follow the instructions of Getting started. This will install

  • Rustup - the Rust installer and
  • Cargo - the Rust build tool.

After the installation, we can test if the installation is successful by the command below:

cargo --version

It will display something like this:

cargo 1.74.0 (ecb9851af 2023-10-18)

➡️ Next: The First Project

📘 Back: Table of contents