-
-
Save FingerLiu/e318a6affa9932d028a87e1b91d073d8 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
apt-get install libsqlite3-dev