运行 go build 时出错。带有日志存储库

我有一个带有 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 // indirect

github.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


皈依舞
浏览 144回答 2
2回答

凤凰求蛊

尝试删除该//indirect行,然后运行go mod tidy # prune any extraneous requirements + other stuffgo clean # remove object files and cached filesgo get -v -u all # update everything related to the dependenciesgo build # finger crossed!

慕村9548890

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文件中。
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Go