I want to use Go, but I\'m having trouble running the go command. I installed go1.5.2 darwin/amd64, but when I run the command go version, I get an error in the ter
go version
Like bjhaid mentioned in the comments above:
This is happening because you must add your PATH to your ~/.zshrc file.
PATH
~/.zshrc
in the ~/.zshrc you should add the line:
export PATH=$PATH:/usr/local/go/bin
you should then source you .zshrc file:
.zshrc
. ~/.zshrc