私の最終的な目標は、現在のバージョンの 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は、誰にでも役立つ可能性のあるケースのログです。