Last active
February 5, 2022 02:18
-
-
Save ammario/2b34ef876bb748fb7309e60f2392879b to your computer and use it in GitHub Desktop.
Install Go
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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