1

我在安装 Rails 4 时遇到问题。希望您能提供帮助!

演示

$ rails -v
Rails is not currently installed on this system. To get the latest version, simply type:

$ sudo gem install rails

You can then rerun your "rails" command.

演示

$ sudo gem install rails

WARNING: Improper use of the sudo command could lead to data loss
or the deletion of important system files. Please double-check your
typing when using sudo. Type "man sudo" for more information.

To proceed, enter your password, or type Ctrl-C to abort.

Password:
ERROR:  Could not find a valid gem 'rails' (>= 0), here is why:
        Unable to download data from https://rubygems.org/ - SSL_connect returned=1 errno=0 state=SSLv3 read server certificate B: certificate verify failed (https://s3.amazonaws.com/production.s3.rubygems.org/latest_specs.4.8.gz)
4

2 回答 2

0

安装 Rails 的最佳解决方案是使用 Ruby 版本管理器(RVM

运行curl -L https://get.rvm.io | bash -s stable以通过此命令安装 RVM 和使用 RVM 安装 Ruby,rvm install 2.0.0然后从此命令安装 Rails

gem install rails -v 4.0.0

那你就可以走了。

于 2013-10-06T06:14:33.383 回答
0

有同样的问题,一切都在这里描述:http ://railsapps.github.io/openssl-certificate-verify-failed.html

tl;dr RVM 的最新版本,即 Ruby 版本管理器,包括一个实用程序,用于诊断和解决由过期证书文件引起的错误。有关说明和建议,请参阅文章安装 Rails。RVM 网站解释了如何安装 RVM。

如果你已经安装了 RVM,试试这个:

$ rvm -v
# rvm 1.19.1 (stable)
$ rvm osx-ssl-certs status all
# Certificates for...
$ rvm osx-ssl-certs update all
# Updating certificates...

如果您使用的是 RVM(您必须使用 RVM 版本 1.19.1 或更高版本),这就是解决问题所需的全部内容。

于 2013-10-06T07:38:09.600 回答