Skip to content

Instantly share code, notes, and snippets.

@z8888q
Created February 27, 2012 02:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save z8888q/1920914 to your computer and use it in GitHub Desktop.
Save z8888q/1920914 to your computer and use it in GitHub Desktop.
linux install sqlite3 for rails
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/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment