问题描述
系统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)解决方法
所有媒体,可在保留署名、
原文连接
的情况下转载,若非则不得使用我方内容。