Go 從 1.11 開始支持 go mod,現(xiàn)在 Go 1.13 出來已經(jīng)默認(rèn)開啟 go mod
了 ,可見日后 Go 的包管理將要統(tǒng)一成 go mod
沙廉, So 再不入坑就 out 了扶叉。
Go 1.13 發(fā)布說明:https://tip.golang.org/doc/go1.13
Go Mod 詳細(xì)介紹:https://segmentfault.com/a/1190000018536993
包存儲地址:$GOPATH/pkg/mod
所需環(huán)境
go: >= 1.11
開啟 go mod
Go 1.13
go env -w GOPROXY=https://goproxy.cn,direct
不使用代理的庫
go env -w GOPRIVATE=*.gitlab.com
Go < 1.13
linux
export GO111MODULE=on
win
set GO111MODULE=on
設(shè)置代理
不開 go mod 代理不生效
linux
export GOPROXY=https://goproxy.cn
win
set GOPROXY=https://goproxy.cn
如何拉取內(nèi)部庫:http://www.reibang.com/p/5831edfa6c78