标签: go dependencies vendor
在大型项目上运行dep ensure时失败,并显示以下错误:
dep ensure
cannot Stat: stat <project>/vendor/github.com/prometheus/procfs/fixtures/self/fd/0: no such file or directory
我该如何解决?
答案 0 :(得分:-1)
存在known issues和dep 0.5(目前为最新)会导致错误。尚无修复程序,但您可以降级到0.4以使一切正常。
dep
您可以在项目存储库中使用安装脚本,并通过环境变量指定所需的版本。
export DEP_RELEASE_TAG="v0.4.1" curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh