Fix cannot find package "golang.org/x/text/unicode/norm"

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

你可能感兴趣的:(Golang)