我一直在关注 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
但是我对我的 go 环境没有安全感..不是我应该能够运行 gotour
go run gotour
或仅通过键入(如本网站 http://www.moncefbelyamani.com/how-to-install-the-go-tour-on-your-mac/ 上所述):
gotour
我想知道我是否以正确的方式做事,因为我是 Go 编程语言的新手。
最佳答案
在 OSX 上使用 Homebrew 软件安装 go 1.4:
1) 创建目录
mkdir $HOME/Go
mkdir -p $HOME/Go/src/github.com/user
2)设置你的路径
export GOPATH=$HOME/Go
export GOROOT=/usr/local/opt/go/libexec
export PATH=$PATH:$GOPATH/bin
export PATH=$PATH:$GOROOT/bin
3) 安装 Go
brew install go
4)“去获取”基础知识
go get golang.org/x/tools/cmd/godoc
5)从这里开始:https://golang.org/doc/code.html在“你的第一个程序”
关于macos - 使用 brew 安装 go,并运行 gotour,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/12843063/