Re: sqlite3.OperationalError: no such table: sqlite_schema
Posted by simonstephan on
URL: http://owlready.306.s1.nabble.com/sqlite3-OperationalError-no-such-table-sqlite-schema-tp2473p2478.html
My solution :
Version of SQLite in my Python3 was too low.
I just remove Python
apt-get remove python3
and install it again :
apt-get install python3
Now, i've SQLite version 3.34 and everything is Okay !
Thanks for your help.