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.

SuVeRa
  • 2,784
  • 2
  • 20
  • 27

2 Answers2

6

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.

Community
  • 1
  • 1
Kulbir Saini
  • 3,926
  • 1
  • 26
  • 34
1

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.

Georges
  • 804
  • 9
  • 15