Go語言GOPROXY設置

1.首先開啓go modulehtml

go env -w GO111MODULE=on     // Windows  export GO111MODULE=on        // macOS 或 Linux

2.配置goproxy:golang

阿里配置:ide

go env -w GOPROXY=https://mirrors.aliyun.com/goproxy/       // Windows  
export GOPROXY=https://mirrors.aliyun.com/goproxy/          // macOS 或 Linux

七牛雲配置:code

go env -w GOPROXY=https://goproxy.cn      // Windows  
export GOPROXY=https://goproxy.cn         // macOS 或 Linux

注意:htm

Go 1.13設置了默認的GOSUMDB=sum.golang.org,是用來驗證包的有效性。這個網址因爲牆的緣由可能沒法訪問,因此可使用下面命令來關閉:get

go env -w GOSUMDB=off // Windows  
export GOSUMDB=off // macOS 或 Linux
相關文章
相關標籤/搜索