问题描述
在使用go get从GitHub上拉取包时,报错:
go get -u github.com/julienschmidt/httprouter go get: module github.com/julienschmidt/httprouter: Get "https://proxy.golang.org/github.com/julienschmidt/httprouter/@v/list": dial tcp 142.251.42.241: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.
还有另一种错误:
net/http: TLS handshake timeout
原因分析
Go env中默认使用的官方代理:
GOPROXY=https://proxy.golang.org,direct
国内网络原因,无法访问,或访问较慢导致
解决办法
设置为中国go代理,在cmd中输入:
go env -w GO111MODULE=on
go env -w GOPROXY=https://goproxy.cn,direct
10万+

被折叠的 条评论
为什么被折叠?



