4

RVMをインストールした後にMountainLionにアップグレードした場合に発生する問題である、Nokogiriに付属する「開発ツールを最初にインストールする必要がある」というエラーを修正する方法を説明する2年前のブログ投稿があります。ブログ投稿で彼はあなたがしなければならないと言っています

rvm update head
rvm --force install 1.9.2
gem install bundle

## in your rails app
bundle
Installing nokogiri (1.4.2) with native extensions
 ...

rvm update headに変更されましたrvm get head。しかし、その後私は盲目的にやった

rvm --force install 1.9.2

このエラーメッセージが表示されます

rvm --force install 1.9.2
Searching for binary rubies, this might take some time.
No binary rubies available for: osx/10.8/x86_64/ruby-1.9.2-p320.
Continuing with compilation. Please read 'rvm mount' to get more information on binary rubies.
The provided compiler '/usr/bin/gcc' is LLVM based, it is not yet fully supported by ruby and gems, please read `rvm requirements`.
  [1]: http://www.fakingfantastic.com/2010/11/26 /fixing-the-you-have-to-install-development-tools-first-error-with-nokogiri/

言い換えれば、それは私を同じブログ投稿に戻すように指示しました。

RVMのウェブサイトを見て、私は盲目的にやった

rvm install 1.9.2

このエラーが発生しました

ruby-1.9.2-p320がインストールされていません。インストールするには:'rvm install ruby​​-1.9.2-p320'

その指示に従って、rvm install ruby​​-1.9.2-p320を実行しましたが、同じバイナリエラーが発生しました

Searching for binary rubies, this might take some time.
No binary rubies available for: osx/10.8/x86_64/ruby-1.9.2-p320.
Continuing with compilation. Please read 'rvm mount' to get more information on binary rubies.
The provided compiler '/usr/bin/gcc' is LLVM based, it is not yet fully supported by ruby and gems, please read `rvm requirements`.

誰かがいくつかのガイダンスを提供できますか

4

2 に答える 2

7

実行する必要があります:

rvm get head
rvm autolibs enable
rvm use --install 1.9.2
bundle install
于 2013-01-02T00:34:43.867 に答える
1

まず、「RVM Requirements」と Ruby のインストールが完了したら、Xcode 内から「コマンド ライン ツール」をインストールします。

于 2013-06-13T19:19:29.313 に答える