Skip to content

Instantly share code, notes, and snippets.

@ziafazal
Created September 8, 2016 14:28
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save ziafazal/cf2b10b38b39e1795d5d8eaa993760ce to your computer and use it in GitHub Desktop.
Save ziafazal/cf2b10b38b39e1795d5d8eaa993760ce to your computer and use it in GitHub Desktop.
install custom sqlite(3.14) with pysqlite
# install custom sqlite 3.14
wget https://github.com/ghaering/pysqlite/archive/2.8.3.tar.gz
wget https://www.sqlite.org/2016/sqlite-autoconf-3140100.tar.gz
tar -xzvf sqlite-autoconf-3140100.tar.gz
tar -xzvf 2.8.3.tar.gz
cp -av sqlite-autoconf-3140100/. pysqlite-2.8.3/
cd ./pysqlite-2.8.3 && python setup.py build_static install
@ziafazal
Copy link
Author

ziafazal commented Sep 8, 2016

Anyone who is using Django with sqlite3 database backend can use these commands to use latest(3.14.1) version of sqlite.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment