Skip to content

Instantly share code, notes, and snippets.

@QuynhVir
Created December 31, 2021 04:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save QuynhVir/c6fbcacbb68ec7f07850557143b118bf to your computer and use it in GitHub Desktop.
Save QuynhVir/c6fbcacbb68ec7f07850557143b118bf to your computer and use it in GitHub Desktop.
Install Go on Amazon Linux ARM
wget https://go.dev/dl/go1.17.5.linux-arm64.tar.gz
sudo tar -C /usr/local/ -xzf go1.17.5.linux-arm64.tar.gz
export GOROOT=/usr/local/go
export GOPATH=$HOME/go
PATH=$PATH:$HOME/.local/bin:$HOME/bin:$GOROOT/bin
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment