Skip to content

Instantly share code, notes, and snippets.

@rwoeber
Created March 28, 2011 19:02
Show Gist options
  • Select an option

  • Save rwoeber/891045 to your computer and use it in GitHub Desktop.

Select an option

Save rwoeber/891045 to your computer and use it in GitHub Desktop.
Install a 'newer' SQLite3 on debian
# 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