Skip to article frontmatterSkip to article content
Site not loading correctly?

This may be due to an incorrect BASE_URL configuration. See the MyST Documentation for reference.

Install Newer Version of SQLite3 on Debian Jessie

  1. Open /etc/apt/sources.list and add the following line to the end.

     :::text
     deb http://www.backports.org/debian jessie-backports main contrib non-free

    or

     :::text
     deb http://ftp.us.debian.org/debian/ jessie-backports main contrib non-free
     deb-src http://ftp.us.debian.org/debian/ jessie-backports main contrib non-free
  2. Make sure the GPG signatures are correct by running the following command.

     :::bash
     sudo apt-get update
     sudo apt-get install debian-backports-keyring
  3. Install SQLite3.

     :::bash
     sudo apt-get update
     sudo apt-get -t jessie-backports install sqlite3 libsqlite3-dev