gpt4 book ai didi

GO111MODULE=on(错误加载模块要求)

转载 作者:IT王子 更新时间:2023-10-29 00:43:11 24 4
gpt4 key购买 nike

go get -u github.com/junegunn/fzf 工作正常但想像这样测试开发分支:

gert@gert ~/ GO111MODULE=on go get -u github.com/junegunn/fzf@devel
go: finding github.com/junegunn/fzf devel
go: finding golang.org/x/crypto latest
go: finding github.com/smartystreets/assertions latest
go: finding github.com/gopherjs/gopherjs latest
go: finding github.com/smartystreets/goconvey latest
go: finding github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1
go: finding golang.org/x/sys latest
go: finding golang.org/x/tools v0.0.0-20190328211700-ab21143f2384
go: gopkg.in/DATA-DOG/go-sqlmock.v1@v1.3.3: go.mod has non-....v1 module path "github.com/DATA-DOG/go-sqlmock" at revision v1.3.3
go get: error loading module requirements

不确定这里发生了什么?如果我这样做会得到相同的结果

GO111MODULE=on go get -u github.com/junegunn/fzf

最佳答案

fzf需要的github.com/gdamore/tcell包有gopkg.in/DATA-DOG/go-sqlmock.v1 依赖。在 go-sqlmock 的 1.3.3 版本中,他们开始使用没有版本后缀的 go 模块,现在版本的显式指示不再有效。

go get gopkg.in/DATA-DOG/go-sqlmock.v1
go: gopkg.in/DATA-DOG/go-sqlmock.v1@v1.3.3: go.mod has non-....v1 module path "github.com/DATA-DOG/go-sqlmock" at revision v1.3.3
go: error loading module requirements

如果您想在开发包上工作而不更新其依赖项,请使用 go get github.com/junegunn/fzf 不带 -u 标志。

tcell 存储库中有关于此问题的公开拉取请求:https://github.com/gdamore/tcell/pull/267

关于GO111MODULE=on(错误加载模块要求),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55430150/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com