6
与brew一起安装go,并运行getour
我一直在关注http://tour.golang.org/,直到执行第三步为止,即告诉您可以在系统上安装gotour。之后,我通过以下方式通过brew安装了go语言: brew install hg brew install go 然后我通过以下方式下载了getour: go get code.google.com/p/go-tour/gotour 当我尝试启动getour时,它无法识别该命令: $ gotour -bash: gotour: command not found 和 $ go gotour 和 $ ./gotour 所以我试图去看去的路,那是空的, echo $GOPATH 所以我定义了GOPATH: GOPATH=/usr/local/Cellar/go/1.0.2/src/pkg/code.google.com/p/ export GOPATH 现在我可以通过运行 ./gotour 但是我对自己的出行环境不安全..我不是应该能够通过 go run gotour 或仅通过键入(如本网站上的http://www.moncefbelyamani.com/how-to-install-the-go-tour-on-your-mac/中所述): gotour 我想知道自从对Go编程语言不熟悉以来,我是否在正确地做事。