Created
March 28, 2011 19:02
-
-
Save rwoeber/891045 to your computer and use it in GitHub Desktop.
Install a 'newer' SQLite3 on debian
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
| # via: http://www.fangiotophia.com/journal/2010/8/31/random-act-of-stupidity-6-debian-rails-3-setup-guide.html | |
| # Open /etc/apt/sources.list and add the following line to the end, then save the file: | |
| deb http://www.backports.org/debian lenny-backports main contrib non-free | |
| # Then, run the following command to make sure the GPG signatures are correct and don't give you warnings when running apt commands: | |
| sudo aptitude update | |
| sudo aptitude install debian-backports-keyring | |
| # Finally, you can install SQLite3: | |
| sudo aptitude update | |
| sudo aptitude -t lenny-backports install sqlite3 libsqlite3-dev | |
| gem install sqlite3-ruby |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment