Upgraded golang version to 1.18

This commit is contained in:
nickolasdaniel
2022-03-18 08:26:06 +02:00
committed by Dan Christian Bogos
parent 6b634ee5fd
commit 2206e5452f
12 changed files with 14 additions and 14 deletions

View File

@@ -123,14 +123,14 @@ Install GO Lang
First we have to setup the GO Lang to our OS. Feel free to download
the latest GO binary release from https://golang.org/dl/
In this Tutorial we are going to install Go 1.17
In this Tutorial we are going to install Go 1.18
::
sudo rm -rf /usr/local/go
cd /tmp
wget https://go.dev/dl/go1.17.5.linux-amd64.tar.gz
sudo tar -xvf go1.17.5.linux-amd64.tar.gz -C /usr/local/
wget https://go.dev/dl/go1.18.linux-amd64.tar.gz
sudo tar -xvf go1.18.linux-amd64.tar.gz -C /usr/local/
export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin