Install Embedded Rust for ESP32 on Linux Mint 21.3 over VirtualBox/Windows 11 (tested with ESP32-C3-DevKitM-1)
This video show steps to install Embedded Rust for ESP32 on Linux Mint 21.3 over VirtualBox/Windows 11 (tested with ESP32-C3-DevKitM-1 ). Basically I follow the steps in Rust on ESP Book > Rust Installation , with my try and error and re-try and success experience. Install Rust Install Rust using rustup script: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh Install espup to install tools for Espressif Install espup (requirement and espup): sudo apt-get install -y gcc build-essential curl pkg-config cargo install espup Install Toolchains for Espressif targets using espup: espup install Install additional software covered in std Development Requirements: ( https://esp-rs.github.io/book/installation/std-requirements.html ) sudo apt-get install git wget flex bison gperf python3 python3-pip python3-venv cmake ninja-build ccache libffi-dev libssl-dev dfu-util libusb-1.0-0 Install ldproxy cargo install ldproxy Setup the Environment Va...