简体   繁体   中英

Ruby bundle install error with json-1.7.3

I am getting following error while installing ruby gems. I am using Ubuntu

Installing json (1.7.3) with native extensions
Gem::Installer::ExtensionBuildError: ERROR: Failed to build gem native extension.

        /usr/bin/ruby1.9.1 extconf.rb
/usr/lib/ruby/1.9.1/rubygems/custom_require.rb:36:in `require': cannot load such file -- mkmf (LoadError)
        from /usr/lib/ruby/1.9.1/rubygems/custom_require.rb:36:in `require'
        from extconf.rb:1:in `<main>'


Gem files will remain installed in /var/lib/gems/1.9.1/gems/json-1.7.3 for inspection.
Results logged to /var/lib/gems/1.9.1/gems/json-1.7.3/ext/json/ext/parser/gem_make.out
An error occured while installing json (1.7.3), and Bundler cannot continue.
Make sure that `gem install json -v '1.7.3'` succeeds before bundling.

I just saw this link, and not sure what to do with devkit*.exe files on ubuntu.

You are missing ruby-dev or ruby-1.9-dev package as described in this stackoverflow question . Install development package files first and then trying installing the gem.

I encountered the same issue and none of these fixes worked.

Here's what worked. It seems Ubuntu's .bashrc has this line near the top:

# If not running interactively, stop here.
[ -z "$PS1" ] && return

This, as the comment suggests, stops there. Capistrano executes the commands non-interactively, so when it runs .bashrc the rest of the file never gets sourced.

I had my RVM lines below this, so the environment wasn't set up properly for capistrano to bundle.

These lines should go above the previous line:

[[ -s "/usr/local/rvm/scripts/rvm" ]] && source "/usr/local/rvm/scripts/rvm"

Hope this helps someone.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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