SuVeRa
SuVeRa

Reputation: 2904

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.

Upvotes: 3

Views: 4131

Answers (2)

Georges
Georges

Reputation: 804

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.

Upvotes: 1

Kulbir Saini
Kulbir Saini

Reputation: 3915

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.

Upvotes: 6

Related Questions