2

ステップ 1 で大きな問題に直面します。RVM をインストールしてから、「rvm install 1.9.3」と入力すると、次のような出力が表示されます。

David-Coles-MacBook-Air:~ DavesPiece$ rvm install 1.9.3
Fetching yaml-0.1.4.tar.gz to /Users/DavesPiece/.rvm/archives
Extracting yaml-0.1.4.tar.gz to /Users/DavesPiece/.rvm/src
Configuring yaml in /Users/DavesPiece/.rvm/src/yaml-0.1.4.
Error running ' ./configure --prefix="/Users/DavesPiece/.rvm/usr"  ', please read /Users/DavesPiece/.rvm/log/ruby-1.9.3-p194/yaml/configure.log
Compiling yaml in /Users/DavesPiece/.rvm/src/yaml-0.1.4.
Error running 'make ', please read /Users/DavesPiece/.rvm/log/ruby-1.9.3-p194/yaml/make.log


Database file /Users/DavesPiece/.rvm/config/packages does not exist.

Installing Ruby from source to: /Users/DavesPiece/.rvm/rubies/ruby-1.9.3-p194, this may take a while depending on your cpu(s)...

ruby-1.9.3-p194 - #fetching 
ruby-1.9.3-p194 - #extracted to /Users/DavesPiece/.rvm/src/ruby-1.9.3-p194 (already extracted)
ruby-1.9.3-p194 - #configuring 
Error running ' ./configure --prefix=/Users/DavesPiece/.rvm/rubies/ruby-1.9.3-p194 --enable-shared --disable-install-doc --with-libyaml --with-opt-dir=/Users/DavesPiece/.rvm/usr ', please read /Users/DavesPiece/.rvm/log/ruby-1.9.3-p194/configure.log
There has been an error while running configure. Halting the installation.
ls: /Users/DavesPiece/.rvm/rubies/*/bin/ruby: No such file or directory
David-Coles-MacBook-Air:~ DavesPiece$ 

言及されているログファイルを読みに行きましたが、どこにもつながりませんでした。どうすればいいですか?私は実際に自分の顔をグーグルで検索しましたが、解決策が見つかりません。

4

3 に答える 3

1

これは疑わしいようですが、RVMをどのようにインストールしましたか?

最も簡単な解決策は次のとおりです。

touch /Users/DavesPiece/.rvm/config/packages
于 2012-04-27T16:08:27.473 に答える
0

RVMを使用してLionにRubyをインストールできない–GCCの問題

于 2012-05-10T22:39:55.853 に答える
0

Xcode をお持ちでない場合は、インストールする必要があります。Lion 10.7.3 以降をお持ちの場合は、App Store で見つけることができます。それ以外の場合は、Apple Developer サイト (アカウントが必要) にアクセスして、ダウンロードとインストールの手順を見つける必要があります。

また、Lion を使用している場合は、GCC-10.7-v2.pkg をダウンロードしてインストールする必要がある場合があります。コンパイラが LLVM ベースであるというメッセージが表示された場合は、代わりに次のコマンドを使用する必要がある場合があります: CC=/usr/bin/gcc-4.2 rvm install 1.9.2-p290 --enable-shared

configure.log を確認していなければ、これは最良の推測にすぎません。

于 2012-04-27T02:36:48.567 に答える