'puma'原生 gem 需要安装构建工具



运行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'

我使用RailsInstaller已经有DevKit。

我没有这个问题之前,但我似乎得到它后,我把ruby版本从2.2.4到2.2.5。我用的是windows电脑。你知道怎么解决这个问题吗?

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

  • 安装到DevKit文件夹

  • 打开cmd并导航到文件夹

  • 复制你在C盘安装的ruby文件夹的路径并粘贴到DevKitconfig.yml中。将路径中的'/'更改为' '。

应该是这样的:

# Example:
#
# ---
# - C:/ruby19trunk
# - C:/ruby192dev
#
---
- C:Ruby22
  • 运行ruby dk.rb install
  • 返回到rails文件夹,运行bundle install,你应该没有任何错误

相关内容

  • 没有找到相关文章

最新更新