我想导入一个 Go 模块,其中包含以下内容go.mod:> grep plist go.mod github.com/DHowett/go-plist v0.0.0-20180609054337-500bd5b9081b howett.net/plist v0.0.0-20181124034731-591f970eefbb // indirect但是,如果我尝试go get该包,我会收到以下错误消息:go: github.com/DHowett/go-plist@v0.0.0-20181124034731-591f970eefbb: parsing go.mod: unexpected module path "howett.net/plist"go get: error loading module requirements如果我尝试执行以下操作,我也会收到此错误go get github.com/DHowett/go-plist:> go get github.com/DHowett/go-plistgo: finding github.com/DHowett/go-plist latestgo: github.com/DHowett/go-plist@v0.0.0-20181124034731-591f970eefbb: parsing go.mod: unexpected module path "howett.net/plist"go: error loading module requirements如何修复此错误以便导入该模块?
- 2 回答
- 0 关注
- 126 浏览
添加回答
举报
0/150
提交
取消