go get github.com/gin-gonic/gin 下载失败解决方法

go get github.com/gin-gonic/gin 下载失败

原因是:go get太慢,增加代理,添加 https://goproxy.io/zh/

1. go env -w GO111MODULE=on

2.go env -w GOPROXY=https://goproxy.io,direct

3. 安装 gin 包 go get github.com/gin-gonic/gin