Skip to content
Charles Cao edited this page Oct 13, 2018 · 7 revisions

Install Go

wget https://dl.google.com/go/go1.10.2.linux-amd64.tar.gz
sudo tar -xvf go1.10.2.linux-amd64.tar.gz
sudo mv go /usr/local
sudo vim ~/.profile

~/.profile
  
# set PATH so it includes user's private bin directories
PATH="$HOME/bin:$HOME/.local/bin:$PATH"
export PATH=$PATH:/usr/local/go/bin

$ source ~/.profile
$ go version
go version go1.10.2 linux/amd64

Building from source

Building Gnbai (command line client)

Clone the repository to a directory of your choosing:

https://github.com/nebulaai/nbai-node.git

Finally, build the gnbai program using the following command.

cd nbai-node
make gnbai
Clone this wiki locally