Skip to content

Instantly share code, notes, and snippets.

@ChechoCZ
Created February 3, 2021 22:28
Show Gist options
  • Save ChechoCZ/b511a18a34c73fd2f05a7fa0447a3e5f to your computer and use it in GitHub Desktop.
Save ChechoCZ/b511a18a34c73fd2f05a7fa0447a3e5f to your computer and use it in GitHub Desktop.
Install Go Lang Mac using Brew
// INSTALL
1. brew update&& brew install golang
// SETUP
2. mkdir -p $HOME/go/{bin,src,pkg}
// SET ENV
export GOPATH=$HOME/go
export GOROOT="$(brew --prefix golang)/libexec"
export PATH="$PATH:${GOPATH}/bin:${GOROOT}/bin"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment