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 の Web サイトには、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 に答える