Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I cannot install the taps gem. I tried running:

sudo apt-get install libreadline-dev
sudo apt-get install libncurses-dev
cd ~/.rvm/src/ruby-1.9.2-p136/ext/readline
ruby extconf.rb
make
sudo make install

But I'm getting this error:

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

  ~/.rvm/rubies/ruby-1.9.2-p136/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). * extconf.rb failed *

Any idea what I did exactly/how to fix?

share|improve this question
I figured it out running this allowed me to install taps: sudo aptitude install libsqlite3-dev mikewilliamson.wordpress.com/2009/08/25/heroku-taps-and-ubuntu – phauwn Jun 30 '11 at 3:07

1 Answer

You need to install the SQLite3 package, with the development headers. On Ubuntu, this would be:

sudo apt-get install libsqlite3-dev
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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