本文介绍了Golang中的模块缓存在哪里?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

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

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

但是我无法在$GOPATH/src/$GOPATH/src/mod中找到它们.

But I cannot find them in $GOPATH/src/ or in $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中的模块缓存在哪里?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-07 02:08