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