go导入“github.comgo-sql-drivermysql“错误问题解决

go导入“github.comgo-sql-drivermysql“错误问题解决,第1张

在用goland来连接数据库时会出现一个问题。导包不成功可以通过以下方法来解决问题

在goland的终端输入

go get github.com/go-sql-driver/mysql

在输入后也许会报这样的错误

go get: module github.com/go-sql-driver/mysql: Get "https://proxy.golang.org/github.com/go-sql-driver/mysql/@v/list": dial tcp 142.251.42.241:443: connect
ex: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because conn
ected host has failed to respond.

这是因为无法对外网进行访问,可以通过输入一下命令进入代理网站进行访问

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

然后在输入上述命令就可以执行了

go get github.com/go-sql-driver/mysql

然后就会发现文件已经导入

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/989617.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-21
下一篇 2022-05-21

发表评论

登录后才能评论

评论列表(0条)

保存