banner
李大仁博客

李大仁博客

天地虽大,但有一念向善,心存良知,虽凡夫俗子,皆可为圣贤。

[Ruby] 更换GEM的source镜像

升级 MAC OS 到 10.11, 开发环境也要调整,CocoaPods 需要重新安装一下,由于 GFW 的原因,访问托管在 amazon S3 上的 rubygems.org 资源不能正常访问,需要调整一下 GEM 的 source 镜像

1. 首先确认一下当前 source 镜像地址

gem sources -l

服务器为 https://rubygems.org/

*** CURRENT SOURCES ***

https://rubygems.org/

2. 删除 GEM 的默认 source 镜像 rubygems.org

gem sources -r https://rubygems.org/

3. 将https://ruby.taobao.org 设置为 GEM 的 source 镜像

gem sources -a https://ruby.taobao.org

服务器为https://ruby.taobao.org

*** CURRENT SOURCES ***

https://ruby.taobao.org

最后安装 CocoaPods

sudo gem install cocoapods

最后提供几个可用的 source 镜像,推荐淘宝网

- 中山大学:http://mirror.sysu.edu.cn/rubygems/ - 山东理工大学:http://ruby.sdutlinux.org/ - 淘宝网:http://ruby.taobao.org/

Loading...
Ownership of this post data is guaranteed by blockchain and smart contracts to the creator alone.