這是一個建立於 的文章,其中的資訊可能已經有所發展或是發生改變。
和上文類似,同樣是在安裝bleve這款全文檢索搜尋引擎上出現的問題。
編譯錯誤資訊
cannot find package "golang.org/x/text/unicode/norm" in any of:/Users/.../projects/go-projects/src/github.com/blevesearch/bleve/vendor/golang.org/x/text/unicode/norm (vendor tree)/usr/local/go/src/golang.org/x/text/unicode/norm (from $GOROOT)/Users/.../projects/go-projects/src/golang.org/x/text/unicode/norm (from $GOPATH)
解決方案
cd src/golang.org/xgit clone git@github.com:weisd/golang.org-x-text.git text --depth 1
相關說明
- 一些包的鏡像在相關vendor中的manifest設定檔所對應的地址無法下載 比如下面:
https://github.com/blevesearch/bleve/blob/master/vendor/manifest
"importpath": "golang.org/x/text/unicode/norm","repository": "https://go.googlesource.com/text",
- 由上可知,https://go.googlesource.com/text 這個倉庫在牆外,有時候翻牆也會長時間打不開,我們通過直接找到其他可替代鏡像進行手動安裝的方式解決
- 如果一些地址下載的是個壓縮包,那麼需要進行:下載,解壓,替換的步驟
- 這裡附上github上的一個參考 issue
參考
- https://gopm.io/download?pkgname=golang.org/x/text
- https://golanglibs.com/search?q=golang.org%2Fx%2Ftext
- https://gowalker.org/github.com/weisd/golang.org-x-text
- https://github.com/weisd/golang.org-x-text