我有一个带有 gomod 的 Go 程序,当我运行时go build .出现以下错误:go: github.com/sirupsen/logrus@v1.4.2 用于两个不同的模块路径(github.com/Sirupsen/logrus 和 github.com/sirupsen/logrus)我的 go mod 看起来像require (github.com/Sirupsen/logrus v1.4.2 // indirectgithub.com/sirupsen/logrus v1.4.2…) 我添加了以下内容,但没有帮助,知道吗?replace ( github.com/Sirupsen/logrus v1.4.2 => github.com/sirupsen/logrus v1.4.2)在我的项目代码中,我仅使用import小写的路径github.com/sirupsen/logrus
2 回答
凤凰求蛊
TA贡献1825条经验 获得超4个赞
尝试删除该//indirect行,然后运行
go mod tidy # prune any extraneous requirements + other stuff
go clean # remove object files and cached files
go get -v -u all # update everything related to the dependencies
go build # finger crossed!
慕村9548890
TA贡献1884条经验 获得超4个赞
github.com/sirupsen/logrus
是 v1.4.2 中 go.mod 文件中所示的正确模块名称 - https://search.gocenter.io/github.com~2Fsirupsen~2Flogrus/info?version=v1.4.2
因此,如上所述,github.com/Sirupsen/logrus v1.4.2
从go.mod
文件中删除 的引用并运行go mod tidy
. 此命令会将缺少的版本依赖项添加到您的go.mod
文件中。
- 2 回答
- 0 关注
- 134 浏览
添加回答
举报
0/150
提交
取消