Update Golang version

This commit is contained in:
Indrek Haav 2022-05-17 08:19:20 +03:00 committed by GitHub
parent 4390670af4
commit 7772c966b7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -48,11 +48,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.7, 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.18.2, but check the website and change the URLs below if necessary:
```shell
$ 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
$ wget https://golang.org/dl/go1.18.2.linux-amd64.tar.gz
$ sudo tar -C /usr/local -xzf go1.18.2.linux-amd64.tar.gz
$ sudo ln -s /usr/local/go/bin/go /usr/local/bin/go
```