Sqlite3-Ruby Install Error on Ubuntu

sqlite3-ruby install error on Ubuntu

You need the SQLite3 development headers for the gem’s native extension to compile against. You can install them by running (possibly with sudo):

apt-get install libsqlite3-dev

I can't install sqlite3 gem for Ubuntu 10

You need to first install the sqlite development headers so it can compile the gem against them:

sudo apt-get install libsqlite3-dev

Then try installing the gem.

An error occurred while installing sqlite3 (1.3.7), and Bundler cannot continue Cannot create rails app

It's failing because you are missing a dependency. You can get it by running
sudo apt-get install libsqlite3-dev



Related Topics



Leave a reply



Submit