如何修复 Mac 上的 dep ensure 错误 'cannot stat file'?

How can I fix dep ensure error 'cannot stat file' on Mac?

当 运行 dep ensure 在大型项目上失败并出现以下错误时:

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

我该如何解决这个问题?

known issuesdep 0.5(目前最新)导致错误。目前还没有修复,但您可以降级到 0.4 以使一切正常。

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

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