Skip to content

Instantly share code, notes, and snippets.

@ammario
Last active February 5, 2022 02:18
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 ammario/2b34ef876bb748fb7309e60f2392879b to your computer and use it in GitHub Desktop.
Save ammario/2b34ef876bb748fb7309e60f2392879b to your computer and use it in GitHub Desktop.
Install Go
VERSION="go1.18beta2"
OS="darwin"
ARCH="amd64"
sudo rm -rf /usr/local/bin/go /usr/local/go
curl https://storage.googleapis.com/golang/$VERSION.$OS-$ARCH.tar.gz | sudo tar -C /usr/local -xzf -
sudo ln -s /usr/local/go/bin/go /usr/local/bin/go
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment