關於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