英文:
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.mod
、go.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.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论