Ben Chuanlong Du's Blog

And let it direct your passion with reason.

Install Newer Version of SQLite3 on Debian Jessie

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

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

    or

    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.

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

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

Comments