0

运行 bundle install 时出现此错误

Gem::InstallError: The 'puma' 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 的 RailsInstaller。

我以前没有遇到过这个问题,但是在将 ruby​​ 版本从 2.2.4 更改为 2.2.5 后,我似乎得到了它。我用的是windows电脑。知道如何解决这个问题吗?

4

1 回答 1

0

我按照以下说明解决了这个问题:

  • 从这里下载 devkit。

  • 在 DevKit 文件夹中安装文件

  • 打开 cmd 并导航到该文件夹

  • 复制你安装在C盘的ruby文件夹的路径,粘贴到DevKit\config.yml中。将路径中的“/”更改为“\”。

它应该如下所示:

# Example:
#
# ---
# - C:/ruby19trunk
# - C:/ruby192dev
#
---
- C:\Ruby22
  • ruby dk.rb install
  • 回到你的 rails 文件夹,运行bundle install,你不应该有任何错误
于 2016-08-25T18:20:31.410 回答