# Etapa 3

O GitLab tem vários daemons escritos em Go. Para instalar o GitLab, precisamos de um compilador Go. As instruções abaixo assumem que você usa Linux de 64 bits. Você pode encontrar downloads para outras plataformas no [Go download page](https://go.dev/dl).

{% code title="Remover a pasta de instalação anterior do Go" %}

```
sudo rm -rf /usr/local/go
```

{% endcode %}

```
curl --remote-name --location --progress-bar "https://go.dev/dl/go1.18.8.linux-amd64.tar.gz"
```

```
echo '4d854c7bad52d53470cf32f1b287a5c0c441dc6b98306dea27358e099698142a  go1.18.8.linux-amd64.tar.gz' | shasum -a256 -c -
```

```
sudo tar -C /usr/local -xzf go1.18.8.linux-amd64.tar.gz
```

```
sudo ln -sf /usr/local/go/bin/{go,gofmt} /usr/local/bin/
```

```
rm go1.18.8.linux-amd64.tar.gz
```


---

# 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://liedsons-organization.gitbook.io/gitlab-no-ubuntu/instalacao-e-configuracao-source/etapa-3.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.
