1.在国内直接用官网推荐的下面这个命令大概率是安装不成功的
$ go get -u github.com/gin-gonic/gin
这时可以在你的项目目录下 执行下面几个命令
go env -w GO111MODULE=on go env -w GOPROXY=https://goproxy.cn,direct go mod init YourProjectName go get -u github.com/gin-gonic/gin
这样就能将 gin以module的方式安装到你的项目的Lib里面了,倘若执行完上面的命令,且没报错,但在goland里import gin时像下面一样飘红
需要把下面这个Enable Go Modules integration给勾选上:
再运行就可以正常起来了
解决!
[button url=”https://gitlab.com/ineo6/hosts/-/raw/master/hosts” types=”down”]另附送GitHub加速Hosts[/button]
原创文章,作者:何故,如若转载,请注明出处:https://www.htm5.cn/1138.html