5

私の最終的な目標は、現在のバージョンの Ruby on Rails をインストールすることです。OS X Mountain Lion で実行しています。これまでの私のプロセスは次のとおりです。

インストール済みの RVM

$ \curl -L https://get.rvm.io | bash -s stable

既知の (承認されていると思います) インストールを確認しました

$ rvm list known

現在の安定版ビルドが利用可能であることを確認しました

[ruby-]2.0.0[-p247]

コマンドを入力してインストールする

$ rvm install 2.0.0-p247

注:これらのインストールコマンドも試しました

$ rvm install ruby-2.0.0-p247
$ rvm install ruby=2.0.0-p247

私はどこにも速くなっていません。結果:

$ rvm install 2.0.0-p247
Searching for binary rubies, this might take some time.
No binary rubies available for: osx/10.8/x86_64/ruby-2.0.0-p247.
Continuing with compilation. Please read 'rvm help mount' to get more information on binary rubies.
Installing requirements for osx, might require sudo password.
Certificates in '/usr/local/etc/openssl/cert.pem' already are up to date.
Requirements installation successful.
Installing Ruby from source to: /Users/xxxxx/.rvm/rubies/ruby-2.0.0-p247, this may take a while depending on your cpu(s)...
ruby-2.0.0-p247 - #downloading ruby-2.0.0-p247, this may take a while depending on your connection...
ruby-2.0.0-p247 - #extracted to /Users/xxxxx/.rvm/src/ruby-2.0.0-p247 (already extracted)
ruby-2.0.0-p247 - #configuring........
Error running './configure --prefix=/Users/xxxxx/.rvm/rubies/ruby-2.0.0-p247 --with-opt-dir=/usr/local/opt/libyaml:/usr/local/opt/readline:/usr/local/opt/libksba:/usr/local/opt/openssl --disable-install-doc --without-tcl --without-tk --enable-shared',
please read /Users/xxxxx/.rvm/log/ruby-2.0.0-p247/1375141206_configure.log
There has been an error while running configure. Halting the installation.

このコマンドもデバッグモードで実行しました。混乱を避けるために、ここからアクセスできます。

また、ここにログがあります:

./configure
current path: /Users/xxxxx/.rvm/src/ruby-2.0.0-p247
command(7): ./configure --prefix=/Users/xxxxx/.rvm/rubies/ruby-2.0.0-p247 --with-opt-dir=/usr/local/opt/libyaml:/usr/local/opt/readline:/usr/local/opt/libksba:/usr/local/opt/openssl --disable-install-doc --without-tcl --without-tk --enable-shared
configure: WARNING: unrecognized options: --without-tcl, --without-tk
checking build system type... x86_64-apple-darwin12.2.1
checking host system type... x86_64-apple-darwin12.2.1
checking target system type... x86_64-apple-darwin12.2.1
checking whether the C compiler works... no
configure: error: in `/Users/xxxxx/.rvm/src/ruby-2.0.0-p247':
configure: error: C compiler cannot create executables
See `config.log' for more details

これは、RVM を使用した初めてのインストールです。$rvm リストは宝石を返しません。

追加情報が役立つかどうか尋ねてください。

編集- HEREは、誰にでも役立つ可能性のあるケースのログです。

4

3 に答える 3

4

Xcode または Command Line Tools のインストールに何か問題があったに違いありません。両方を再インストールすると、すべてが美しく動作しました。

于 2013-07-30T00:30:00.153 に答える
3

クエリと同じエラーを適用したときに Google からここに到着した場合:

私はこれと同じ問題を抱えていましたが、受け入れられた回答が示唆したように、xcodeを再インストールするという途方もなく長いプロセスを経たくありませんでした。私がしたことは、実行しただけで、実行した 後 、元の問題 を再度
rvm get stable実行しました
rvm install ruby-2.0.0-p247



問題


rvm get stable

解決

于 2013-11-13T00:22:40.503 に答える