System Requirements

Before starting, ensure your server meets the following minimum requirements:

Step 1: Update Your System

Start by updating your server to the latest packages:

sudo apt update && sudo apt upgrade -y

Install necessary dependencies:

sudo apt install build-essential curl git wget jq -y

Step 2: Install Go

Nesa requires Go for building and running the node. Install the latest stable version of Go:

wget <https://golang.org/dl/go1.20.5.linux-amd64.tar.gz>
sudo tar -C /usr/local -xzf go1.20.5.linux-amd64.tar.gz

Add Go to your PATH:

echo "export PATH=$PATH:/usr/local/go/bin" >> ~/.bashrc
source ~/.bashrc

Verify the installation:

go version

Step 3: Clone Nesa Repository