ruby gem install rails 错误解决
最近打算看ruby。
今天用命令gem install rails的时候碰到这样的错误提示:
ERROR: Error installing XXXXXXXXXXX:
The 'XXXXXXXXXXXX' native gem requires installed build tools.
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'
原因是需要安装这个devkit,但是系统里没装,出错信息里给了解决方案:
1. 到 http://rubyinstaller.org/downloads/下载devkit
2. 按照 http://github.com/oneclick/rubyinstaller/wiki/Development-Kit/ 安装devkit
主要安装步骤如下:
1. 如果原来系统中已经安装了旧版的devkit, 则删除它
2. 下载上面提到的devkit
3. 解压下载下来的文件到指定的目录,如d:/devkit。(注意:目录不能有空格)
4. 进入安装目录下运行ruby dk.rb,然后按照提示分别运行ruby dk.rb init 和 ruby dk.rb install来增强ruby
按照安装步骤,完成了DevKit的安装,非常简单。
然后,再次安装需要的gem即可。