bump go version

This commit is contained in:
ionutboangiu
2024-08-19 13:07:25 +03:00
committed by Dan Christian Bogos
parent 9961b7b723
commit fbdc6f015a
12 changed files with 18 additions and 18 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.18
In this Tutorial we are going to install Go 1.23
::
sudo rm -rf /usr/local/go
cd /tmp
wget https://go.dev/dl/go1.18.linux-amd64.tar.gz
sudo tar -xvf go1.18.linux-amd64.tar.gz -C /usr/local/
wget https://go.dev/dl/go1.23.linux-amd64.tar.gz
sudo tar -xvf go1.23.linux-amd64.tar.gz -C /usr/local/
export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin