goproxy.io的使用
Oct 9, 2019
go1.11后支持的module再天朝使用起来,并不是那么爽,各种限制.因此goproxy就出来了.
- linux or MacOS 使用
1 | # Enable the go modules feature |
- windows PowerShell 使用
1 | # Enable the go modules feature |
- golang的版本再>=1.13的时候, 可以直接使用命令
1 | go env -w GOPROXY=https://goproxy.io,direct |
- 再公司内部搭建的仓库, 不经过代理, 可以使用.
1 | # Set environment variable allow bypassing the proxy for selected modules |
PS: 权威参考goproxy.io