Skip to content

Instantly share code, notes, and snippets.

@BigOokie
Last active July 5, 2024 18:44
Show Gist options
  • Save BigOokie/d5817e88f01e0d452ed585a1590f5aeb to your computer and use it in GitHub Desktop.
Save BigOokie/d5817e88f01e0d452ed585a1590f5aeb to your computer and use it in GitHub Desktop.
Manage multiple versins of Go on MacOS with Homebrew

This process would likely apply to other Homebrew formula also.

First search for your desired package:

brew search go

You should get a list of results that include the below. Not "go" is very unspecific so you may get a lot of results:

==> Formulae
go ✔
go@1.10
go@1.11
go@1.9

Then install the desired version:

brew install go@1.10

Remember that you can have more than one package installed at the same time, but you cannot have them all available at the same time. So if you have the latest/generic go package already installed you need to unlink it first:

brew unlink go

And then you can link a different version:

brew link go@1.10

In some cases you may need to link them with the --force and --overwrite options:

brew link --force --overwrite go@1.10
@ausaf007
Copy link

Awesome, this is really an elegant solution. Previously to use older version I had to play with alias (alias go="go1.19"), but this is really a clean to way to do it. Thanks!

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