小编典典

与brew一起安装go,并运行getour

go

我一直关注着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编程语言不熟悉以来,我是否在以正确的方式做事。


阅读 380

收藏
2020-07-02

共1个答案

小编典典

在OSX上使用自制软件安装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,位于“您的第一个程序”

2020-07-02