Install Prerequisites

Supporting software for supporting software

Install Prerequisites

The following tools may not yet be available on your system, but are necessary for installing our supporting software.

make

make is a utility to assist in building software.

sudo apt-get update
sudo apt-get install make

Check to see if make was correctly installed.

make --version

Go

Go is a programming language and the go compiler is needed to build software written in Go.

The instructions below are for version 1.20. Check for newer versions of go, and adapt the instructions below.

cd
wget https://go.dev/dl/go1.20.linux-amd64.tar.gz
sudo tar -C /usr/local -xzf go1.20.linux-amd64.tar.gz
sudo ln -s /usr/local/go/bin/go /usr/bin/go

Check to see if go was installed correctly.

go version

Optionally, clean up installation files.

rm go1.20.linux-amd64.tar.gz

Stake Local Dashboard Repository

Clone the Stake Local Dashboard repository.

mkdir ~/git
cd ~/git
git clone https://github.com/stakelocal/stakelocal-dashboard.git

Last updated