1. 在ubuntu上安装go.
在ubuntu14.04上目前,最高的版本是golang-1.6
$ sudo apt-get install golang-1.6
$ sudo apt-get install golang-go
然后参考
http://tecadmin.net/install-go-on-ubuntu/
环境变量设置参看 http://www.cnblogs.com/shaohef/p/6394950.html
安装完之后,
启动 $ godoc -http=:6060
可以查看各种库的帮助。
2. go 学习
3.go-restful 非常好用 轻量级 推荐用
需要下载这个两个库。
https://github.com/emicklei/go-restful
https://github.com/go-swagger/go-swagger
原文:http://www.cnblogs.com/shaohef/p/6394947.html