Skip to content

Latest commit

 

History

History
36 lines (29 loc) · 1.48 KB

19.md

File metadata and controls

36 lines (29 loc) · 1.48 KB

和上文类似,同样是在安装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

参考