问题描述

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

When I enable gomodules and build my go program then the required packages are downloaded.

$GOPATH/src/$GOPATH/src/mod
$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,它们存储在

For Go 1.11, they are stored in

$GOPATH/pkg/mod

这篇关于Golang中的模块缓存在哪里?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!