首页 > 代码库 > 搭建go tour(go指南)

搭建go tour(go指南)

Google在golang.org和appspot上分别搭建了基于浏览器的交互式Go编程指南-go tour,便于golang学习.但由于中国特色的网络环境无法正常访问,so决定自己搭建一个go tour.

准备工作:

export GOPATH=$HOME/golang

下载相关内容(推荐使用http://gopm.io下载)

[不用"go install code.google.com/p/go-tour/gotour"的原因是网络环境和没安装hg.]

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

go.tools:code.google.com/p/go.tools (依赖)

go.net:code.google.com/p/go.net (依赖)

将go-tour,go.tools和go.net解压(需重命名)后放在GOPATH/src下,再跳转到GOPATH/src/code.google.com/p/go-tour/gotour运行go build即可生成执行文件.

其他:

中文版go-tour:https://bitbucket.org/mikespook/go-tour-zh

go-tour源码阅读:http://www.cnblogs.com/yjf512/archive/2012/12/13/2816480.html

搭建go tour(go指南)