我想下载go-tour离线 我怎么能得到它? 我试过使用代码
go get code.google.com/p/go-tour/gotour
但它不起作用。
答案 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
的输出以确认。