关于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

  


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM