Updated Golang version

This commit is contained in:
Indrek Haav 2022-02-19 20:45:26 +02:00 committed by GitHub
parent 552a636f62
commit 87f656ffb5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -49,11 +49,11 @@ $ sudo apt install -y nodejs
#### Golang
[Golang](https://golang.org/) needs to be downloaded and installed manually. The latest version as of the writing of this is 1.17.5, but check the website and change the URLs below if necessary:
[Golang](https://golang.org/) needs to be downloaded and installed manually. The latest version as of the writing of this is 1.17.7, but check the website and change the URLs below if necessary:
```shell
$ wget https://golang.org/dl/go1.17.5.linux-amd64.tar.gz
$ sudo tar -C /usr/local -xzf go1.17.5.linux-amd64.tar.gz
$ wget https://golang.org/dl/go1.17.7.linux-amd64.tar.gz
$ sudo tar -C /usr/local -xzf go1.17.7.linux-amd64.tar.gz
$ sudo ln -s /usr/local/go/bin/go /usr/local/bin/go
```