我安装gin框架,使用命名:
```
go get github.com/gin-gonic/gin
```
等待了好久,就是完成不了,
我打开/root/go/src下面,
```
[root@iZ942k2d5ezZ src]# du -lh --max-depth=1 ./*
3.0M ./github.com/gin-gonic
5.5M ./github.com/ugorji
4.9M ./github.com/golang
1.5M ./github.com/go-sql-driver
752K ./github.com/gin-contrib
16M ./github.com
108K ./gopkg.in/go-playground
112K ./gopkg.in
```
发现是下载了一些文件,但是不知道为什么一直卡住,不能完成,是因为我哪里搞错了吗?
是centos6的git版本太低,需要卸载git 1.7, 安装git 2.7就解决了
我刚遇到这个坑,解决了,参看我的博文:[centos6 安装go框架gin的步骤,以及中间遇到的坑](http://www.fancyecommerce.com/2017/12/28/centos6-%E5%AE%89%E8%A3%85go%E6%A1%86%E6%9E%B6gin%E7%9A%84%E6%AD%A5%E9%AA%A4%EF%BC%8C%E4%BB%A5%E5%8F%8A%E4%B8%AD%E9%97%B4%E9%81%87%E5%88%B0%E7%9A%84%E5%9D%91/)
#2