# Installation

### Install dependencies <a href="#install-dependencies" id="install-dependencies"></a>

UPDATE SYSTEM AND INSTALL BUILD TOOLS

```
sudo apt -q update
sudo apt -qy install curl git jq lz4 build-essential
sudo apt -qy upgrade
```

### Install Golang

Install latest go version <https://golang.org/doc/install>

{% code overflow="wrap" %}

```
wget -q -O - https://raw.githubusercontent.com/canha/golang-tools-install-script/master/goinstall.sh | bash -s -- --version 1.18
source ~/.profile
```

{% endcode %}

To verify that Golang installed

```
go version
```

It should return go version go1.18 linux/amd64

### Run Full Node

{% code overflow="wrap" %}

```
git clone https://github.com/defi-ventures/blockx-node-public-compiled.git
cd blockx-node-public-compiled
./run-fullnode-cosmovisor.sh
```

{% endcode %}
