dep - Solving failure: No versions/No more versions of xxx

前言

如果你正在使用Golangdep工具,我相信你可能会遇到这个问题

dep 版本

$ dep version
dep:
 version     : devel
 build date  : 
 git hash    : 
 go version  : go1.10
 go compiler : gc
 platform    : linux/amd64

当前Latest releasev0.4.1

问题

使用dep包管理工具时,无论执行dep init -v或是dep ensure

总是报版本错误(no more versionsno versions)的问题

$ dep ensure
Solving failure: No versions of xxxx met constraints:
    master: unable to update checked out version: fatal: reference is not a tree: 2c5e7ac708aaa719366570dd82bda44541ca2a63
: command failed: [git checkout 2c5e7ac708aaa719366570dd82bda44541ca2a63]: exit status 128

原因

算是一个bug,是由于缓存的错误没有得到正确的更新

解决方案


rm -rf $GOPATH/pkg/dep/sources

然后再重新执行dep ensure或是dep init -v就可以了

你又遇到过什么奇奇怪怪的问题呢,交流一下 :=)

    原文作者:煎鱼
    原文地址: https://segmentfault.com/a/1190000013539357
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞