2

我正在尝试在godoc本地运行一个模块,但遇到了这个错误。

在我看来,它像godoc依赖于go list,但不是go list以模块友好的方式运行。

ak/ (master)  godoc -http=localhost:6060
using module mode; GOMOD=/Users/aaron/ak/go.mod
failed to determine the build list of the main module: go command exited unsuccessfully: exit status 1
go list -m: can't compute 'all' using the vendor directory
    (Use -mod=mod or -mod=readonly to bypass.)
4

1 回答 1

1

尝试这个:

GO111MODULE=off godoc

看起来有一个持续的问题:https ://github.com/golang/go/issues/33655

现在,我把它放在我的点文件中:

alias godoc='GO111MODULE=off godoc'
于 2020-09-23T16:55:12.997 回答