私がしているruby 1.9.2p180 (2011-02-18) [i386-mingw32]
私のWindows 7マシンにインストール。ここで、「gem install json」コマンドを使用してJSON gemをインストールしようとすると、次のエラーが発生しました。
ERROR: Error installing JSON:
The 'json' native gem requires installed build tools.
Please update your PATH to include build tools or download the DevKit
from '[http://rubyinstaller.org/downloads][1]' and follow the instructions
at '[http://github.com/oneclick/rubyinstaller/wiki/Development-Kit][2]'
次に、DevKit-4.5.0-20100819-1536-sfx.exeをダウンロードしました。それをC:\ DevKitに解凍しました。そして、コマンドプロンプトから以下のコマンドを実行しました。
ruby dk.rb init
上記のコマンドを実行した後、config.yamlが生成され、rubyフォルダーのパスが自動的に追加されていることを確認しました。これは、config.yamlファイルの下部にある行「-C:/ Ruby192」です。
ruby dk.rb review
「ruby dk.rb install」を実行すると、devkit機能がルビーに挿入されるというメッセージが表示されました
ruby dk.rb install
次のメッセージが表示されました。
[INFO] RubyGems override already in place for C:/Ruby192, skipping.
[INFO] Installing C:/Ruby192/lib/ruby/site_ruby/devkit.rb
次に、コマンドを使用してJSON gemを再度実行してみましたgem install json
。その後、以前と同じエラーメッセージが表示されました。
ERROR: Error installing JSON:
The 'json' native gem requires installed build tools.........
何か不足していますか?