我已经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.........
我想念什么吗?