本文主要是介绍ERROR: Could not find a valid gem ‘bundler’ (>= 0)解决方法,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
ERROR: Could not find a valid gem ‘bundler’ (>= 0)解决方法
问题描述
系统macOS,需要用到ruby gem,执行gem install bundler后报错:
ERROR: Could not find a valid gem 'bundler' (>= 0), here is why:Unable to download data from https://ruby.taobao.org/ - SSL_connect returned=1 errno=0 state=SSLv3 read server certificate B: certificate verify failed (https://ruby.taobao.org/specs.4.8.gz)
原因是https://ruby.taobao.org/的RubyGems镜像已经不再维护了,需要更换Gem Source,这里我们直接换成Ruby China 镜像。
更换RubyGems镜像源
检查现在用的源
$ gem sources -l
添加ruby-china的源,并删除掉失效的源
$ gem sources --add https://gems.ruby-china.com/ --remove https://ruby.taobao.org/
确保只有 gems.ruby-china.com
$ gem sources -l
请尽可能用比较新的 RubyGems 版本,建议2.6.x以上。
这里请翻墙一下
$ gem update --system
$ gem -v
2.7.7
这时候再执行gem install bundler顺利完成,若提示权限带上sudo。
博客来源:雨夜的博客
这篇关于ERROR: Could not find a valid gem ‘bundler’ (>= 0)解决方法的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!