Skip to content

Instantly share code, notes, and snippets.

@amshinde
Last active June 11, 2024 21:22
Show Gist options
  • Save amshinde/dcb1386899fe24b978098e12f70fdc9e to your computer and use it in GitHub Desktop.
Save amshinde/dcb1386899fe24b978098e12f70fdc9e to your computer and use it in GitHub Desktop.
Install golang on Linux
curl -O https://storage.googleapis.com/golang/go1.22.4.linux-amd64.tar.gz
sudo rm -rf /usr/local/go && sudo tar -C /usr/local -xzf go1.22.4.linux-amd64.tar.gz
sudo ln -sf /usr/local/go/bin/go /usr/bin/go

vim ~/.bashrc
export GOPATH=$HOME/go
export PATH=$PATH:/usr/local/go/bin:$GOPATH/bin

vim /etc/profile

source ~/.bashrc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment