在搭建golang项目的时间,发现下载依赖的时候出现如下的错误:
Golang unrecognized import path “golang.org/x/net”
https fetch failed: Get https://golang.org/x/net?go-get=1: dial tcp 216.239.37.1:443: i/o timeout
打开网页https://golang.org/x/net?go-get=1 ,界面跳转到https://godoc.org/golang.org/x/net。
解决办法:
方式一(socks5 代理):
$ export http_proxy=socks5://127.0.0.1:1080
$ export https_proxy=$http_proxy方式二(开源代理):
$ export GOPROXY=https://goproxy.io
GoProxy github开源地址:https://github.com/goproxyio/goproxy