解决golang编译提示dial tcp 172.217.160.113:443: connectex: A connection attempt failed(推荐)
白叔King 人气:0解决golang编译提示dial tcp 172.217.160.113:443: connectex: A connection attempt failed
废话不多说,直接开讲
还多新手朋友在编译go的过程中是不是经常会遇到这样的报错
module ***: Get “http://proxy.golang.org/***”: dial tcp 172.217.160.113:443: connectex: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.
你可以试着访问一下proxy.golang.org,怎么样,访问不了吧,没错,这是被我们伟大的长城防火墙给屏蔽了,你需要改成我们国内可用的代理地址
直接在命令行执行
go env -w GOPROXY=https://goproxy.cn
然后再次尝试执行你的go命令试试看,搞定了吧
补充:golang下载包的时候出现 dial tcp 142.251.43.17:443: i/o timeout时候解决
当出现上面的问题,不是每个包都会,有一些包下载不成功就会这样
很简单,有些包在不同的代理下载就是会有问题
goproxy https://goproxy.io/zh/ 七牛云 https://goproxy.cn 阿里云 https://mirrors.aliyun.com/goproxy/
这几个代理地址切换试试
加载全部内容