This guide uses rustup to install and manage the Rust toolchains.
First, install and configure rustup
:
# Install
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
# Configure
source ~/.cargo/env
Configure the Rust toolchain to default to the latest stable version, add nightly and the nightly wasm target:
rustup default stable
rustup update
rustup update nightly
rustup target add wasm32-unknown-unknown --toolchain nightly
Use a terminal shell to execute the following commands:
sudo apt update
# May prompt for location information
sudo apt install -y git clang curl libssl-dev llvm libudev-dev pkg-config
Run these commands from a terminal:
pacman -Syu --needed --noconfirm curl git clang
Run these commands from a terminal:
sudo dnf update
sudo dnf install clang curl git openssl-devel
Run these commands from a terminal:
sudo zypper install clang curl git openssl-devel llvm-devel libudev-devel
Open the Terminal application and execute the following commands:
# Install Homebrew if necessary https://brew.sh/
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
# Make sure Homebrew is up-to-date, install openssl and protobuf
brew update
brew install openssl
brew install protobuf