Go Version Manager (Multi Go)
GVM allow you to install and manage multiple Go version on a machine easily.
sudo apt-get update
sudo apt-get install curl git mercurial make binutils bison gcc build-essential bsdmainutils
bash < <(curl -s -S -L https://raw.githubusercontent.com/moovweb/gvm/master/binscripts/gvm-installer)// You can check all Go version available on https://go.dev/dl/
// For example we will install Go version 1.19.12
gvm install go1.20
// Using the go1.20
gvm use go1.20Note for installing higher Go Version on GVM
Last updated