Created
February 27, 2012 02:40
-
-
Save z8888q/1920914 to your computer and use it in GitHub Desktop.
linux install sqlite3 for rails
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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