Skip to content

Instantly share code, notes, and snippets.

@hmwill
hmwill / gist:ad3b1dab04ca4d9e5d761ba22de97efd
Last active January 6, 2024 12:11
Setting up Rust on Chrome OS
# Set up basic dev tools
sudo apt-get update
sudo apt-get install build-essential
# Run the base installation
curl https://sh.rustup.rs -sSf | sh
# Set the path
export PATH="$HOME/.cargo/bin:$PATH"