Golang中的模块缓存在哪里?

当我启用gomodules并构建go程序时,将下载所需的软件包。

但我不能找到他们$GOPATH/src/$GOPATH/src/mod

它们存储在哪里?

export GO111MODULE=on

go 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

回到顶部