如何离线golang编程之旅

时间:2014-03-22 11:38:51

标签: go

我想下载go-tour离线 我怎么能得到它? 我试过使用代码

  go get code.google.com/p/go-tour/gotour

但它不起作用。

2 个答案:

答案 0 :(得分:6)

如果说"它不起作用"您的意思是收到错误消息:package code.google.com/p/go-tour/gotour: cannot download, $GOPATH not set. For more details see: go help gopath,然后是need to setup GOPATH,然后是go get所需的包。

无论如何,这是让GoTour正常工作的完整解决方案,假设您已经安装了Go。

mkdir go_tour && cd go_tour
export GOPATH=`pwd`
go get code.google.com/p/go-tour/gotour
./bin/gotour

答案 1 :(得分:-1)

你可以扩展"它不起作用"?

  $ go get code.google.com/p/go-tour/gotour

  $ gotour

2014/03/22 20:02:53 Serving content from /Users/matt/.go/src/code.google.com/p/go-tour
2014/03/22 20:02:53 A browser window should open. If not, please visit http://127.0.0.1:3999

对我没问题。确保您的$GOPATH设置正确并导出到您的shell中。检查go env的输出以确认。