/GO-Download-and-Install-Linux

Download and install Go quickly with the steps described here.

GO-Download-and-Install-Linux

Download and install Go quickly with the steps described here.

wget https://go.dev/dl/go1.22.2.linux-amd64.tar.gz
rm -rf /usr/local/go && tar -C /usr/local -xzf go1.22.2.linux-amd64.tar.gz
export PATH=$PATH:/usr/local/go/bin
go version