sqlite3 Issues – Error installing sqlite3 – sqlite3 requires Ruby version >= 1.9.1
Errors as follows, common problem is not having the header files installed or installing the gem sqlite3 when you actually want sqlite3-ruby.
sudo gem install sqlite3
ERROR: Error installing sqlite3:
sqlite3 requires Ruby version >= 1.9.1.
Fix with:
sudo apt-get install sqlite3 libsqlite3-dev
sudo gem install sqlite3-ruby
sudo gem install sqlite3-ruby
Related Posts
Posted on July 6, 2010 at 1:48 pm by Jordan Carter · Permalink
In: Ruby on Rails, Server Config · Tagged with: sqlite3-ruby, Ubuntu Lucid Lynx 10.04
In: Ruby on Rails, Server Config · Tagged with: sqlite3-ruby, Ubuntu Lucid Lynx 10.04
on November 29, 2010 at 6:12 am
Permalink
Thanks, worked like a charm
on March 21, 2011 at 12:19 am
Permalink
thank you man! you’ve really helped me