Created
September 8, 2016 14:28
-
-
Save ziafazal/cf2b10b38b39e1795d5d8eaa993760ce to your computer and use it in GitHub Desktop.
install custom sqlite(3.14) with pysqlite
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
# 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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Anyone who is using Django with sqlite3 database backend can use these commands to use latest(3.14.1) version of sqlite.