如何在Mac上修复Dep确保错误“无法统计文件”?

时间:2019-09-17 15:49:33

标签: go dependencies vendor

在大型项目上运行dep ensure时失败,并显示以下错误:

cannot Stat: stat <project>/vendor/github.com/prometheus/procfs/fixtures/self/fd/0: no such file or directory

我该如何解决?

1 个答案:

答案 0 :(得分:-1)

存在known issuesdep 0.5(目前为最新)会导致错误。尚无修复程序,但您可以降级到0.4以使一切正常。

您可以在项目存储库中使用安装脚本,并通过环境变量指定所需的版本。

export DEP_RELEASE_TAG="v0.4.1"
curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh