最佳答案
我已经在我的 Windows 7机器上安装了 ruby 1.9.2p180 (2011-02-18) [i386-mingw32]
。现在,我尝试使用命令“ 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 中
ruby dk.rb install
我收到了以下信息。
[INFO] RubyGems override already in place for C:/Ruby192, skipping.
[INFO] Installing C:/Ruby192/lib/ruby/site_ruby/devkit.rb
现在,我使用命令 gem install json
再次尝试执行 JSON gem,然后得到与前面相同的错误消息。
ERROR: Error installing JSON:
The 'json' native gem requires installed build tools.........
我错过了什么吗?