Installing Rust
- Install Rust.
cd /opt/ curl https://sh.rustup.rs -sSf | sh -s -- -y
If the download fails due to network conditions, try again.

1 2
source $HOME/.cargo/env export PATH=$HOME/.cargo/bin:$PATH
- View the Rust version.
1rustc --version
1rustup --version
1cargo --version
Parent topic: Configuring the Compilation Environment