# Installation

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

## Pre-requisites

* [Install Go 1.19+](https://golang.org/dl/)
* [Install jq](https://stedolan.github.io/jq/download/)

## Install Go

{% hint style="info" %}
**warning**

Uptick is built using [Go](https://golang.org/dl/) version `1.19+`
{% endhint %}

```bash
go version
```

{% hint style="info" %}
If the `uptickd: command not found` error message is returned, confirm that your [`GOPATH`](https://golang.org/doc/gopath_code#GOPATH) is correctly configured by running the following command:

```bash
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
```

{% endhint %}

## Install Binaries

{% hint style="info" %}
The latest Uptick [version](https://github.com/UptickNetwork/uptick/releases) is `v0.3.0`
{% endhint %}

### GitHub

Clone and build Uptick using `git`:

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

Check that the `uptickd` binaries have been successfully installed:

```bash
uptickd version
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://upticknft.gitbook.io/uptick-network-documentation/guides/quickstart/installation.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
