go get 国内无法使用解决方法

问题

在国内,使用go get 获取包时,经常碰到https fetch failed
例如执行go get -v -u github.com/sqs/goreturns:

1
2
3
github.com/sqs/goreturns (download)
Fetching https://golang.org/x/tools/imports?go-get=1
https fetch failed: Get https://golang.org/x/tools/imports?go-get=1: dial tcp 216.239.37.1: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.

解决方法

使用代理获取(代理自行配置)。

windows

在PATH路径下新建goget.bat文件:

1
2
3
4
5
6
@echo off

set http_proxy=socks5://127.0.0.1:1080
set https_proxy=socks5://127.0.0.1:1080

go get %*

然后需要使用go get时,直接使用goget代替即可。
例:

1
goget -v -u github.com/sqs/goreturns

问题解决。