Skip to content

Instantly share code, notes, and snippets.

@FingerLiu
Forked from ziafazal/install_sqlite_3.14.sh
Created September 14, 2016 08:53
Show Gist options
  • Save FingerLiu/e318a6affa9932d028a87e1b91d073d8 to your computer and use it in GitHub Desktop.
Save FingerLiu/e318a6affa9932d028a87e1b91d073d8 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
@FingerLiu
Copy link
Author

apt-get install libsqlite3-dev

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