Added optional rust setup to mint-setup.org.

This commit is contained in:
2022-02-23 00:06:32 +13:00
parent 3c6e313c71
commit b6be25d945

View File

@ -97,6 +97,29 @@ pip3 install ansible
* Optional - Install hardware drivers
* Optional - Setup humacs editor
* Optional - Setup mutt mail client
* Optional - Install rust
I've been tinkering with learning the Rust programming language lately, to set that up follow these steps:
#+NAME: Install rust
#+begin_src tmate
# Ensure pre-requisites are installed
sudo apt install curl build-essential gcc make -y
# Install rust via setup script
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
#+end_src
Once installed you can check if the rust compiler is installed with the code block below:
#+NAME: Verify installation
#+begin_src tmate
rustc -V && cargo -V
#+end_src