Bundle install could not find compatible versions for gem “bundler”

前端 未结 4 1700
佛祖请我去吃肉
佛祖请我去吃肉 2020-12-28 19:25

When I type bundle install I got this error. I tried to find solution but nothing solve my case. Please help me.

 Bundler could not find compatible versions          


        
4条回答
  •  -上瘾入骨i
    2020-12-28 20:23

    Alternatively, you can also remove bundler 2.x completely and only use Bundler 1.x:

    gem uninstall bundler -v ">= 2.0" 
    gem install bundler -v "< 2.0" 
    
    # Now you can use bundler as before
    bundle install
    

提交回复
热议问题