我一直关注着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编程语言不熟悉以来,我是否在以正确的方式做事。
mkdir $HOME/Go mkdir -p $HOME/Go/src/github.com/user
export GOPATH=$HOME/Go export GOROOT=/usr/local/opt/go/libexec export PATH=$PATH:$GOPATH/bin export PATH=$PATH:$GOROOT/bin
brew install go
go get golang.org/x/tools/cmd/godoc
5)从此处开始:https://golang.org/doc/code.html,位于“您的第一个程序”