对初学者来说,最好的Go入门资料是A Tour of Go。但是因为官网不能上,每次要查看一下都很费劲。所以可以按照这里的步骤安装本地的Go入门教程。
$ go get github.com/golang/tour $ go get github.com/golang/net $ go get github.com/golang/tools # 因为github上的repo只是golang官方的mirror,因此需要调整相应目录路径 # 将$GOPATH/github.com/golang下的tour,net,tools三个文件夹移到$GOPATH/golang.org/x下面 $ cd $GOPATH/golang.org/x/tour/gotour $ go build # 运行go $ ./gotour原文链接:https://www.f2er.com/go/190193.html