# Installation

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

# Pre-requisites

# Install Go

Uptick is built using Go (opens new window) version 1.18+

Copy go version

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

Copy 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 (opens new window) is uptickd v0.2.4

# GitHub

Clone and build Uptick using git:

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

Check that the uptickd binaries have been successfully installed:

Copy uptickd version