执行rails new blog后,出现下面的反馈:
Gem::RemoteFetcher::FetchError: Errno::ECONNRESET: Connection reset by peer - SSL_connect (https://rubygems.org/gems/rake-10.4.2.gem)
An error occurred while installing rake (10.4.2), and Bundler cannot continue.
Make sure that `gem install rake -v '10.4.2'` succeeds before bundling.
run bundle exec spring binstub --all
bundler: command not found: spring
Install missing gem executables with `bundle install`
搜了一下没有找到很清楚的解释,有人能帮忙解决一下吗?
1
ChiangDi 2015-05-14 11:42:38 +08:00 via Android 1
被墙了,换淘宝源。
|
2
fantasticfears 2015-05-14 11:46:28 +08:00 via iPhone 1
|
3
windfarer 2015-05-14 11:48:34 +08:00 1
编辑项目下的gemfile,换淘宝源,然后再 bundle install
|
4
anthonyeef OP |
5
windfarer 2015-05-14 13:26:57 +08:00 via Android
@anthonyeef 即使是shadowsocks全局翻墙,terminal里的东西也不是走ss,而是会直连。terminal下想用ss,可以用这个。不过大家一般应该都是改淘宝源来解决这个问题。
https://github.com/rofl0r/proxychains-ng |
6
karloku 2015-05-14 13:29:38 +08:00 1
看错误码就是https://rubygems.org/被墙(因为rubygems的仓库serve在aws上)
rails new的时候带上-B [--skip-bundle]参数, 跳过bundler Gemfile里改成https://ruby.taobao.org/ ss不是万能的, gem这样的cli工具默认不会走系统代理 |
7
anthonyeef OP @karloku 我把gem源换成淘宝源了,也改了Gemfile,但bundle install后还是长时间的没有反应。焦头烂额啊……
|
8
anthonyeef OP |
9
linhua 2015-05-20 00:13:14 +08:00 1
@anthonyeef
翻墙后也是有问题的,其实是https有问题,换成http就好了。可参考 http://stackoverflow.com/questions/10246023/bundle-install-fails-with-ssl-certificate-verification-error |
10
anthonyeef OP @linhua 谢谢你,我明天试一下。小铜币送上。
|