关于go mod安装第三方包提示: module declares its path as: github.com/apache/thrift but was required as: git.apache.org/thrift.git 解决办法
go: lottery/rpc imports git.apache.org/thrift.git/lib/go/thrift: git.apache.org/thrift.git@v0.16.0: parsing go.mod: module declares its path as: github.com/apache/thrift but was required as: git.apache.org/thrift.git
解决方案:
go.mod : replace git.apache.org/thrift.git v0.16.0 => github.com/apache/thrift v0.16.0
然后:
go mod tidy go mod vendor