0

操作系统:Windows 7 Ultimate 32 位(6.1,Build 7600)

安装 Ruby:我已成功安装 Ruby 版本 1.8.7 安装 Rails:我尝试通过在命令提示符下键入以下命令来安装 Rails 和所有依赖项:gem install rails --include-dependencies

但不幸的是,发生了如下错误:

信息: gem install -y现在是默认设置,将被删除 信息:使用 --ignore-dependencies 仅安装您列出的 gem 错误:安装 rails 时出错:“json”本机 gem 需要已安装的构建工具。

请更新您的 PATH 以包含构建工具或从“http://rubyinstaller.org/downloads”下载 DevKit,并按照“http://github.com/oneclick/rubyinstaller/wiki/Development-Kit”中的说明进行操作

修复它的步骤是什么?

4

1 回答 1

5

“json”原生 gem 需要安装构建工具。

Please update your PATH to include build tools or download the DevKit from 'http://rubyinstaller.org/downloads'
and follow the instructions at 'http://github.com/oneclick/rubyinstaller/wiki/Development-Kit'

似乎表明您的环境中缺少什么:构建工具,也称为编译器工具链。

RubyInstaller 提供了一个名为 Development Kit (DevKit) 的即用型包,似乎在上面的链接中有所指示。

此外,wiki 页面包含下载和安装它的所有说明。

如果你想使用 Rails,而不是使用 RubyInstaller,为什么不直接安装RailsInstaller,它已经集成了 DevKit,并且没有额外的安装步骤。

希望有帮助。

于 2012-09-10T13:59:14.653 回答