I need to install the JSON gem to start my app but I get the error below whenever I try to install the json gem. Can anyone help me out. Im using rails 2.2.2 and gems 1.3.1; thx for any help you can provide.

Arions-macbook-pro:.ssh arion$ sudo gem install json
Password:
Sorry, try again.
Password:
Building native extensions.  This could take a while...
ERROR:  Error installing json:
    ERROR: Failed to build gem native extension.

/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby extconf.rb install json
can't find header files for ruby.


Gem files will remain installed in /Library/Ruby/Gems/1.8/gems/json-1.1.4 for inspection.
Results logged to /Library/Ruby/Gems/1.8/gems/json-1.1.4/ext/json/ext/parser/gem_make.out
link|improve this question
feedback

7 Answers

You are missing the ruby development headers. To install these on an OS like ubuntu you should use:

aptitude install ruby1.8-dev
link|improve this answer
Im using a mac... do I still just need to install ruby-dev? – Aaron Apr 17 '09 at 18:12
yes, you need ruby-dev – Palesz Jan 23 '10 at 21:19
feedback

The ruby headers don’t come installed with the base ruby install with Mac OS X. These can been found on Mac OS X Install Disc 2 by installing the XCode Tools.

Once installed, all was well!

UPDATE As of at least OS X 10.7.3 this is no longer a problem, it "just works"

MacBook-Pro:tmp$ sudo gem install json
Password:
Building native extensions.  This could take a while...
Successfully installed json-1.6.5
1 gem installed
Installing ri documentation for json-1.6.5...
Installing RDoc documentation for json-1.6.5...
MacBook-Pro:tmp$ uname -a
link|improve this answer
1  
Um, not true. Perhaps it was something else that caused this to "just work" for you. – GarlicFries Apr 2 at 14:33
feedback

Have you installed ruby-dev ?

link|improve this answer
How do you install ruby-dev on a mac? is it a port or a gem or something like that? – Aaron Apr 17 '09 at 18:15
feedback

Installing XCode tools... should fix this issue.

link|improve this answer
feedback

A simple google search (http://www.google.com/search?rls=en-us&q=can't+find+header+files+for+ruby) reveals this:

If you get the can't find header files for ruby error message when trying to build an extension or a gem, it means that Ruby cannot locate its header files.

Header files are not delivered by default with Mac OS X, you need to install the Xcode Tools package after the installation. You can find it in the Optional Installs / Xcode Tools directory on the Leopard DVD.

link|improve this answer
feedback

I had the same problem.

Here is my adventures (hope it will be useful):

To fix it I've done many manipulations :-)

I'm using Fedora Core. I've fixed it this way:

I've installed rails-devel:

sudo yum install rails-devel

tried again:

sudo gem install rails

but I've got another problem:

Building native extensions. This could take a while... ERROR: Error installing rails: ERROR: Failed to build gem native extension.

    /usr/bin/ruby extconf.rb creating Makefile

make gcc -I. -I/usr/lib/ruby/1.8/i386-linux -I/usr/lib/ruby/1.8/i386-linux -I. -D_FILE_OFFSET_BITS=64 -fPIC -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m32 -march=i686 -mtune=atom -fasynchronous-unwind-tables -fno-strict-aliasing -fPIC -O3 -Wall -c parser.c make: gcc: Command not found

So I've installed GCC:

sudo yum install gcc

tried again:

sudo gem install rails

Now I've got another problem ))) :

Installing ri documentation for json-1.6.3... ERROR: While generating documentation for json-1.6.3 ... MESSAGE: no such file to load -- irb/slex ... RDOC args: --ri --op /usr/lib/ruby/gems/1.8/doc/json-1.6.3/ri --title JSON implemention for Ruby --main README.rdoc ext/json/ext ext lib README.rdoc --title json-1.6.3 Documentation --quiet

So installed ruby-irb:

sudo yum install ruby-irb

tried again:

sudo gem install rails

Successfully installed rails-3.1.3

That's all )))

link|improve this answer
feedback

It turns out certain gems require some ruby header files to install properly. These header files do not ship with Lion (OSX 10.7).

It also turns out Xcode 4 (latest release) also does not install these header files. I tried this.

Solution - Assuming you are on Mac OS X (you appear to be based on the terminal output). To get it working I installed gcc with some developer tools from the following page

You should be able to install the gems now, either with gem install or bundle install.

Overhead If you are worried about the other junk this comes with, here is a summary.

  • gcc - useful
  • make - useful
  • clang - useful for ObjectiveC
  • Developer CLI Tools (purge, etc) - useful?
  • DevSDK (headers, etc) - what you need
link|improve this answer
feedback

Your Answer

 
or
required, but never shown