问题描述
系统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 install bundler顺利完成,若提示权限带上sudo。