2.2 Setting Up Your Environment
Operating System Setup
If you haven't already, install Ubuntu 20.04 LTS on your machine.
Update your system:
sudo apt update && sudo apt upgrade -yInstalling Dependencies
Install necessary packages:
sudo apt install -y build-essential git curl
sudo apt install -y pkg-config libssl-dev clang postgresqlInstall Rust:
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | shAdd Rust to your path:
source $HOME/.cargo/envSetting Up Firewall
If you're using UFW (Uncomplicated Firewall), allow SSH connections:
sudo ufw allow sshWe'll open specific ports for Spicenet later in the configuration process.
Last updated
Was this helpful?