繁体   English   中英

安装rails json gem时出错 - bundler无法继续

[英]Error while installing rails json gem - bundler cannot continue

我在Windows上安装Rails时出现问题。 它无法安装json gem,下面会显示错误消息。

      create  test/integration/.keep
      create  test/test_helper.rb
      create  tmp/cache
      create  tmp/cache/assets
      create  vendor/assets/javascripts
      create  vendor/assets/javascripts/.keep
      create  vendor/assets/stylesheets
      create  vendor/assets/stylesheets/.keep
         run  bundle install
Fetching gem metadata from https://rubygems.org/............
Fetching version metadata from https://rubygems.org/...
Fetching dependency metadata from https://rubygems.org/..
Resolving dependencies...........
Using rake 10.4.2
Using i18n 0.7.0

Gem::InstallError: 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' and follow the instructions
at 'http://github.com/oneclick/rubyinstaller/wiki/Development-Kit'
An error occurred while installing json (1.8.3), and Bundler cannot continue.
Make sure that `gem install json -v '1.8.3'` succeeds before bundling.

运行此命令 -

sudo apt-get install libgmp-dev

通过阅读错误屏幕截图,您的系统似乎缺少某些本机C / C ++扩展所需的必要构建工具。

您可以尝试安装RubyInstaller 开发工具包 此工具包有助于在Windows机器上使用Ruby的本机C / C ++扩展。

安装说明可在此处找到。

安装完成后,运行gem update --system ,然后再试一次。

希望这可以帮助!

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM