Properly install sqlite3 with FTS5 support
问题 I'm developing a Python tool which uses a sqlite3 virtual table with FTS5 (Full Text Search). I would like to know how to properly install from a tarball (or any other means) the needed requirements for my tool to work so I can pack them for portability. Currently, I managed to install the latest release tarball of sqlite. However, when I execute: python3 -c "import sqlite3; print(sqlite3.sqlite_version)" # or python2 -c "import sqlite3; print(sqlite3.sqlite_version)" I get 3.11.0 , while