Ruby on Rails configuration error

Following this guide , I am trying to configure Ruby on Rails using Amazon EC2. For my instance, I selected "Basic 32-bit Amazon Linux AMI 2010.11.1 Beta." I have ruby, sqlite and rubygems. I am in step 3.3 of the related manual, which should execute the following command

install package

The result is the following. I'm sure I missed something, but I'm at a loss. Any suggestions?

Installing sqlite3 (1.3.3) with native extensions /usr/lib/ruby/site_ruby/1.8/rubygems    /installer.rb:529:in `build_extensions': ERROR: Failed to build gem native extension (Gem::Installer::ExtensionBuildError)

/usr/bin/ruby extconf.rb 
mkmf.rb can't find header files for ruby at /usr/lib/ruby/ruby.h

Gem files will remain installed in /usr/lib/ruby/gems/1.8/gems/sqlite3-1.3.3 for inspection.

EDIT . Following the suggestion below to install ruby-devel, now I get this error in addition to the original one.

Installing sqlite3 (1.3.3) with native extensions /usr/lib/ruby/site_ruby/1.8/rubygems/installer.rb:529:in `build_extensions': 
ERROR: Failed to build gem native extension. (Gem::Installer::ExtensionBuildError)

    /usr/bin/ruby extconf.rb 
checking for sqlite3.h... no
sqlite3.h is missing. Try 'port install sqlite3 +universal'
or 'yum install sqlite3-devel' and check your shared library search path (the
location where your sqlite3 shared library is located).

But when I try to run

yum install sqlite-devel

They tell me:

Package sqlite-devel-3.6.20-1.6.amzn1.i386 already installed and latest version
Nothing to do
+5
4

libsqlite3-dev

$ sudo apt-get install libsqlite3-dev

$ gem install sqlite3-ruby

+2

, , gcc .

, , .

+2

This worked for me:

yum install ruby-devel
yum install sqlite-devel

NOT sqlite3-devel

+1
source

Make an assumption, but you may have several development packages. Try to run:

yum install ruby-devel sqlite3-devel

0
source

All Articles