Installation
- Go to https://go.dev/dl/.
- From the stable versions, download the archive for your OS. Let's say
go1.23.5.linux-amd64.tar.gz
for Linux. - Make an sdk folder in your home directory,
~/sdk
./home/your-username/sdk
for the full path. - Extract the downloaded Go archive file to its version. Here is the full path,
/home/your-username/sdk/go1.23.5/<extracted Go files>
. - Create a symbolic link to
/usr/local/go
.
- For Linux or macOS
you can customize this command to your needs,sudo ln -s /home/your-username/sdk/go1.23.5 /usr/local/go
. - For Windows
you can append~/sdk/go1.23.5
to the PATH in System Variables.
- For Linux or macOS
- Open your terminal and verify it,
go version
.
Change GoLang Version
You can install it by the CLI instead of downloading the archived file in the web browser because your OS already has GoLang. Let's say you want to use the legacy version of GoLang, Go 1.18.10.
go install golang.org/dl/go1.23.5@latest
go1.23.5 download
- Remove the current symbolic link,
- For linux/mac
sudo rm -f /usr/local/go
.
sudo ln -s /home/your-username/sdk/go1.23.5 /usr/local/go
- For Windows,
you can change the GOROOT and PATH in System Variables.
- For linux/mac
System Variables
It is better to put GOPATH and GOROOT into System Variables and append them into the PATH.
export GOPATH="$HOME/go"
export GOROOT="/usr/local/go"
export PATH="$GOPATH/bin:$PATH"
export PATH="$GOROOT/bin:$PATH"
Linux
- You can create a file of .bash_profile in your home directory if the file does not exist
- Copy and paste the commands above to the file. Save and close.
- Put source
~/.bash_profile
at the end of the~/.bashrc
file.
macOS
- You can create a file of
.zprofile
in your home directory if the file does not exist - Copy and paste the commands above to the file. Save and close.
Windows
You can put them on System Variables.