和上文类似,同样是在安装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/x
git clone [email protected]: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