# Install
# Latest Version
The latest INT Chain version for Mainnet latest
# Install go
TIP
Go 1.14+ is required for building and installing the INT Chain software.
Install go
by following the official docs.
Remember to set your $GOPATH
, $GOBIN
, and $PATH
environment variables, for example:
mkdir -p $HOME/go/bin
echo "export GOPATH=$HOME/go" >> ~/.bashrc
echo "export GOBIN=$GOPATH/bin" >> ~/.bashrc
echo "export PATH=$PATH:$GOBIN" >> ~/.bashrc
source ~/.bashrc
Verify that go
has been installed successfully
go version
# Install intchain
After setting up go
correctly, you should be able to compile and run intchain
.
Clone the source code of intchain and checkout the testnet branch, then make intchain.
git clone https://github.com/intfoundation/intchain
cd intchain
make intchain
If your environment variables have set up correctly, you should not get any errors by running the above commands.
Now check your intchain
version.
intchain version
← Introduction Mainnet →