I have the following error during sqlite3-ruby install:

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

/usr/bin/ruby1.8 extconf.rb
checking for sqlite3.h... no
sqlite3.h is missing. Try 'port install sqlite3 +universal' or 'yum install sqlite3-devel'
*** extconf.rb failed ***
Could not create Makefile due to some reason, probably lack of
necessary libraries and/or headers.  Check the mkmf.log file for more
details.  You may need configuration options.

Provided configuration options:
    --with-opt-dir
    --without-opt-dir
    --with-opt-include
    --without-opt-include=${opt-dir}/include
    --with-opt-lib
    --without-opt-lib=${opt-dir}/lib
    --with-make-prog
    --without-make-prog
    --srcdir=.
    --curdir
    --ruby=/usr/bin/ruby1.8
    --with-sqlite3-dir
    --without-sqlite3-dir
    --with-sqlite3-include
    --without-sqlite3-include=${sqlite3-dir}/include
    --with-sqlite3-lib
    --without-sqlite3-lib=${sqlite3-dir}/lib


Gem files will remain installed in /usr/lib/ruby/gems/1.8/gems/sqlite3-ruby-1.3.1 for inspection.
Results logged to /usr/lib/ruby/gems/1.8/gems/sqlite3-ruby-1.3.1/ext/sqlite3/gem_make.out

sqlite3.h is located in /usr/include/

sudo gem install sqlite3-ruby --without-sqlite3-include=/usr/include

doesn't work


ERROR:  While executing gem ... (OptionParser::InvalidOption)
    invalid option: --without-sqlite3-include=/usr/include

Ubuntu 10.04

link|improve this question

72% accept rate
same issue - this is not answered. sqlite3.h is non-existent and all the above packages are installed. ubunut 10.10 – rrt Feb 11 '11 at 16:55
Try to sudo apt-get install build-essential and then sudo gem install sqlite3-ruby – Stel Feb 11 '11 at 16:55
it has since changed to just sqlite3, not sqlite3-ruby – kelloti Nov 14 '11 at 4:50
feedback

13 Answers

I got the same problem and solved like below:

apt-get install libsqlite3-dev
link|improve this answer
6  
I needed sudo apt-get install libsqlite3-dev . Thanks. – B Seven May 26 '11 at 21:53
Worked like a charm. Thanks. – frank.m yesterday
feedback

You just need a -- in there.

sudo gem install sqlite3-ruby -- --with-sqlite3-include=/usr/include

That specifies that the option is not to gem directly, but the specific gem.

link|improve this answer
feedback

This is what I did:

wget http://www.sqlite.org/sqlite-amalgamation-3.7.2.tar.gz
tar xzf sqlite-amalgamation-3.7.2.tar.gz
cd sqlite-3.7.2/

./configure
make
make install

gem install rails sqlite3-ruby

from : http://cuasan.wordpress.com/2010/10/13/rails-3-on-debian-with-sqlite-3/

link|improve this answer
feedback

If you run in ubuntu,and using RVM for ruby on rails,please add FIRST:

sudo apt-get install libxslt-dev libxml2-dev

OR You can check with these commands:

This command will prepare for you two packages : sqllite3 and libsqlite3-dev

sudo apt-get install sqlite3 libsqlite3-dev

-Now,install sqlite gem

 [sudo] gem install sqlite3-ruby

-using Ubuntu doesn't need sudo.

Goodluck! Note: i'm using Ubuntu 10.10 and it's working.

link|improve this answer
sudo apt-get install sqlite3 libsqlite3-dev worked for me – Amit Patel Feb 2 at 13:01
feedback
up vote 2 down vote accepted

Aha-ha!

sudo apt-get install build-essential ;)
link|improve this answer
1  
This doesn't work. :( libsqlite3-dev does the trick. – faraz Jan 13 at 23:20
feedback

Tried ALL of other solutions, none helped.

It turned out that you also need dev package for ruby itself. For me, it helped

sudo apt-get install ruby-full

It has a lot of nasty dependencies though (like emacs, wtf?), just

sudo apt-get install ruby1.8-dev

should be fine. After it's installed (and you have the sqlite and sqlite-dev packages installed)

sudo gem install sqlite3-ruby

works like a charm.

link|improve this answer
feedback

This was simply enough to make it work

sudo apt-get install libsqlite3-dev

Thanks to marshluca

link|improve this answer
This worked for me. Thanks! – Jim Clouse Mar 11 at 14:24
feedback

Not --without-sqlite3-include=/usr/include, but --with-sqlite3-include=/usr/include.

link|improve this answer
Doesn't work.. sqlite3.h is still missing – Stel Aug 11 '10 at 13:36
If sqlite3.h is really missing and not in /usr/include as you said, then you can install it with: sudo apt-get install libsqlite3-dev – Kurt Aug 11 '10 at 13:47
I have already done this.. It doesn't help. I have sqlite3 and libsqlite3-dev installed. – Stel Aug 11 '10 at 13:54
feedback

Had this same problem and the following worked for me:

compile sqlite3 as static library, install somewhere in your home directory and then provide that option for the gem install process.

Go to the download page and grab the source. Most recent version at this time is http://www.sqlite.org/sqlite-autoconf-3070400.tar.gz

tar -xf on the file or do whatever you normally do to uncompress; enter directory

./configure --disable-shared --enable-static --prefix=/some/path/in/my/home

compile, install, and when you're installing the gem...

gem install sqlite3-ruby -- --with-sqlite3-dir=/some/path/in/my/home

link|improve this answer
feedback

This is the exact same problem I had a few weeks ago. I found out I needed to download the most recent headers/libraries from the SQLite Download Page. Try it out, hope this helps!

link|improve this answer
feedback

From sqlite3-ruby gem can't find sqlite3.h on ubuntu:

You also need to install gcc itself, so in total it would be:

sudo apt-get install gcc libsqlite3-dev ruby1.8-dev
sudo gem install sqlite3

Apparently you get a wrong error pointing to a missing sqlite3.h when the actual problem is missing gcc itself.

link|improve this answer
feedback

For me the problem was solved by getting mkmf, which is in ruby1.8-dev.

sudo apt-get install ruby1.8-dev

Thanks to mentalized for that one.

link|improve this answer
feedback

This is the answer for Ubuntu: http://rystraum.com/blog/2011/03/ruby-on-rails-sqlite3-h-is-missing/

link|improve this answer
You should write out the answer here, and include a pointer to it, rather than just including the pointer. – Romain Oct 3 '11 at 14:25
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.