> For the complete documentation index, see [llms.txt](https://docs.stakelocal.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.stakelocal.io/dashboard-installation/install-supporting-software/install-prerequisites.md).

# Install Prerequisites

## 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.

```bash
sudo apt-get update
sudo apt-get install make
```

<figure><img src="/files/UcYdUnLRXCzRZFngUo4E" alt=""><figcaption><p>Results of <code>apt-get install make</code> command</p></figcaption></figure>

Check to see if `make` was correctly installed.

```bash
make --version
```

<figure><img src="/files/5yWzv46dbRQmm05UZEcB" alt=""><figcaption><p>Results of <code>make --version</code> command</p></figcaption></figure>

### 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](https://go.dev/dl/), and adapt the instructions below.

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

<figure><img src="/files/yKYILlVPmurbmA655vQo" alt=""><figcaption><p>Results of the <code>wget</code>, <code>tar</code>, and <code>ln</code> commands</p></figcaption></figure>

Check to see if `go` was installed correctly.

```bash
go version
```

<figure><img src="/files/PfKDXZpJK6FXkVprXoYU" alt=""><figcaption><p>Results of <code>go version</code> command</p></figcaption></figure>

Optionally, clean up installation files.

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


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://docs.stakelocal.io/dashboard-installation/install-supporting-software/install-prerequisites.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
