Update Prerequisites authored by Katharina Renk's avatar Katharina Renk
......@@ -20,7 +20,7 @@ sudo apt upgrade
The latest version can be found [here](https://go.dev/dl/). Please adjust the command below accordingly.
```bash
wget https://go.dev/dl/go1.21.5.linux-386.tar.gz
wget https://go.dev/dl/go1.21.5.linux-amd64.tar.gz
```
### Extract the libraries using the tar command and placing it in the correct location
......@@ -28,7 +28,7 @@ wget https://go.dev/dl/go1.21.5.linux-386.tar.gz
Make sure to adjust the version in this command to fit the one downloaded in the previous step.
```bash
sudo tar -C /usr/local/ -xzf go1.21.5.linux-386.tar.gz
sudo tar -C /usr/local/ -xzf go1.21.5.linux-amd64.tar.gz
```
### Check if path for Go is already set
......
......