Before you start, make sure you have the following:
sudo apt update && sudo apt upgrade -y
Install necessary dependencies, such as Git, Go, curl, and others required for the Sei node setup.
sudo apt install -y build-essential curl git wget jq
sudo apt install -y golang-go
go (if not already installed)Install the latest version of Go using the following commands:
wget <https://golang.org/dl/go1.20.5.linux-amd64.tar.gz>
sudo tar -C /usr/local -xvzf go1.20.5.linux-amd64.tar.gz
Add Go to the system PATH:
echo "export PATH=\\$PATH:/usr/local/go/bin" >> ~/.bashrc
source ~/.bashrc
Verify the installation:
go version