Installation

Build and install the Uptick binaries from source or using Docker.

Pre-requisites

Install Go

warning

Uptick is built using Go version 1.18+

go version

If the uptickd: command not found error message is returned, confirm that your GOPATH is correctly configured by running the following command:

mkdir -p $HOME/go/bin
echo "export GOPATH=$HOME/go" >> ~/.bashrc
source ~/.bashrc
echo "export GOBIN=$GOPATH/bin" >> ~/.bashrc
source ~/.bashrc
echo "export PATH=$PATH:$GOBIN" >> ~/.bashrc
source ~/.bashrc

Install Binaries

The latest Uptick version is uptickd v0.2.7

GitHub

Clone and build Uptick using git:

git clone https://github.com/UptickNetwork/uptick.git
cd uptick
git checkout <version>
make install

Check that the uptickd binaries have been successfully installed:

uptickd version

Last updated