小编典典

Golang中的模块缓存在哪里?

go

当我启用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
...

阅读 556

收藏
2020-07-02

共1个答案

小编典典

对于Go 1.11,它们存储在

$GOPATH/pkg/mod
2020-07-02