Golang中的模块缓存在哪里?
当我启用gomodules并构建go程序时,将下载所需的软件包。
但我不能找到他们$GOPATH/src/
或$GOPATH/src/mod
。
它们存储在哪里?
export GO111MODULE=ongo mod init
go build main.go
go: finding github.com/sirupsen/logrus v1.0.6
go: downloading github.com/sirupsen/logrus v1.0.6
...
回答:
对于Go 1.11,它们存储在
$GOPATH/pkg/mod
以上是 Golang中的模块缓存在哪里? 的全部内容, 来源链接: utcz.com/qa/418027.html