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
apt-get install make commandCheck to see if make was correctly installed.
make --version
make --version commandGo
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
wget, tar, and ln commandsCheck to see if go was installed correctly.
go version
go version commandOptionally, clean up installation files.
rm go1.20.linux-amd64.tar.gzStake Local Dashboard Repository
Clone the Stake Local Dashboard repository.
mkdir ~/git
cd ~/git
git clone https://github.com/stakelocal/stakelocal-dashboard.gitLast updated