On 13 Jun 2018, at 11:50am, Space Pixel <renginald.ba...@gmail.com> wrote:

> Also, some of the packages sqlite3 requires are
> very ancient and deprecated: crypto, aws-sdk, http, https, and some more.

sqlite3 does not require any of those packages.  SQLite has no dependencies at 
all.  You can compile sqlte3 support entirely from one '.c' file and one '.h' 
file and they don't #include anything else.

All SQLite does is store data in files on your own local drive.  SQLite does 
not do any crypto.  It cannot access anything over HTTP.  It does not 
understand Amazon Web Services.  Something else you're using must require those 
packages.

> Plus, when I tried
> to install it without any Python or build tools, it fell back to the build 
> and then the build immediately FAILED

SQLite includes no Python code and cannot be directly called from Python.  
SQLite itself provides just a C API does not come with any Python interface.

Once again, your errors are not coming from SQLite.  They're coming from some 
other part of your development system.

Simon.
_______________________________________________
sqlite-users mailing list
sqlite-users@mailinglists.sqlite.org
http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to