Skip to content

Latest commit

 

History

History
35 lines (23 loc) · 749 Bytes

go-mod-instruction.md

File metadata and controls

35 lines (23 loc) · 749 Bytes

go mod instruction

注意China go mod加速问题:官方讨论

关联问题:

Go Modules 和 Proxy

Go Module China 加速

设置参考:

  • 设置China国内加速(1)
go env -w GO111MODULE=on
go env -w GOPROXY=https://goproxy.cn,direct   //go >= 1.13
go env -w GOSUMDB=sum.golang.org //可选
  • 设置China国内加速(2)
go env -w GO111MODULE=on
go env -w GOPROXY=https://goproxy.io,direct
  • 设置China国内加速(3)
go env -w GO111MODULE=on
go env -w GOPROXY=https://some.other.proxy,direct
go env -w GOSUMDB=sum.golang.google.cn