Skip to content

Instantly share code, notes, and snippets.

@naviat
Last active May 10, 2021 06:52
Show Gist options
  • Save naviat/0f60d9f0442cf388dc7c91b763d6352d to your computer and use it in GitHub Desktop.
Save naviat/0f60d9f0442cf388dc7c91b763d6352d to your computer and use it in GitHub Desktop.
Update go version to latest
  1. Download new go version at: https://golang.org/dl/

  2. Extract the archive you downloaded into /usr/local, creating a Go tree in /usr/local/go.

Important: This step will remove a previous installation at /usr/local/go, if any, prior to extracting. Please back up any data before proceeding.

For example, run the following as root or through sudo:

`rm -rf /usr/local/go && tar -C /usr/local -xzf go1.16.4.linux-amd64.tar.gz`
  1. Add /usr/local/go/bin to the PATH environment variable.

You can do this by adding the following line to your $HOME/.profile or /etc/profile (for a system-wide installation):

export PATH=$PATH:/usr/local/go/bin

Note: Changes made to a profile file may not apply until the next time you log into your computer. To apply the changes immediately, just run the shell commands directly or execute them from the profile using a command such as source $HOME/.profile.

  1. Verify that you've installed Go by opening a command prompt and typing the following command:

$ go version

Confirm that the command prints the installed version of Go.

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