go mod tidy给出了”操作不允许”的错误信息。

huangapple go评论87阅读模式
英文:

go mod tidy gives operation not permitted messages

问题

为什么在终端运行"go mod tidy"会给我返回这些信息?

go mod tidy
pattern all: open /Users/Jumpman/.Trash: operation not permitted

这些信息中有几个不同路径的消息,都以"operation not permitted"结尾。作为参考,我正在使用Go版本1.17。

英文:

Why does running go mod tidy give me these messages in the terminal?

go mod tidy
pattern all: open /Users/Jumpman/.Trash: operation not permitted

There are a handful of these messages with different paths all ending with operation not permitted. For reference I'm using go version 1.17

答案1

得分: 1

每个 Go 模块都应该放在一个专用的目录中。你的模块似乎在你的主目录下。

在你的主目录下创建一个子目录,并将 go.modgo.sum 和你的 Go 代码移动到那里。

英文:

Every go module should be in a dedicated directory. Yours appears to be within your home directory.

Create a subdirectory within your home directory, and move go.mod, go.sum, and your go code there.

huangapple
  • 本文由 发表于 2021年11月12日 08:08:12
  • 转载请务必保留本文链接:https://go.coder-hub.com/69936436.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定