Validator node
Add the Golang PPA repository to get the latest version of Golang.
sudo add-apt-repository ppa:longsleep/golang-backports
After adding the PPA, update packages list using the below command.
sudo apt-get update

Install the latest version of Golang and other required packages
sudo apt-get install -y git golang-go make

Export the following Go environment variables
export GOROOT=/usr/lib/go
export GOPATH=$HOME/go
export GOBIN=$GOPATH/bin
export PATH=$PATH:$GOROOT/bin:$GOBIN
You can also append the above lines to $HOME/.bashrc file and run the following command to reflect in current Terminal session
source $HOME/.bashrc

- 1.
git clone github.com/ixofoundation/ixo-blockchain
- 2.Navigate to the
ixo-blockchain
foldercd ixo-blockchain
Check out the production version.git checkout v1.6.0
- 3.Run following command to install the ixo-blockchain
make install
Last modified 1yr ago