Update Prerequisites authored by Fabian Seidl's avatar Fabian Seidl
...@@ -17,12 +17,16 @@ sudo apt upgrade ...@@ -17,12 +17,16 @@ sudo apt upgrade
### Download Go using wget ### Download Go using wget
The latest version can be found [here](https://go.dev/dl/). Please adjust the command below accordingly.
```bash ```bash
wget https://go.dev/dl/go1.20.3.linux-amd64.tar.gz wget https://go.dev/dl/go1.20.3.linux-amd64.tar.gz
``` ```
### Extract the libraries using the tar command and placing it in the correct location ### Extract the libraries using the tar command and placing it in the correct location
Make sure to adjust the version in this command to fit the one downloaded in the previous step.
```bash ```bash
sudo tar -C /usr/local/ -xzf go1.20.3.linux-amd64.tar.gz sudo tar -C /usr/local/ -xzf go1.20.3.linux-amd64.tar.gz
cd /usr/local/ cd /usr/local/
... ...
......