go安装leaf
安装的时候使用go get发现控制台没有任何显示进度。所以可以用后面的那个链接下载。我是追出来的这个链接。
其实go get 就是 git clone到本地。
如果觉得git慢的话,可以先迅雷下载到本地,再上传上去,放在需要的目录下面。
1.配置项目路径GOPATH到/root/leafserver
2.下载所需要的库
git clone https://github.com/name5566/leafserver
go get github.com/name5566/leaf 或者 git clone https://github.com/name5566/leaf /root/leafserver/src/github.com/name5566/leaf
go get github.com/golang/protobuf/proto 或者 git clone https://github.com/golang/protobuf /root/leafserver/src/github.com/golang/protobuf
go get gopkg.in/mgo.v2 或者 git clone https://gopkg.in/mgo.v2 /root/leafserver/src/gopkg.in/mgo.v2
3.编译
go install server