I deployed my AWS application but am receiving an error when I navigate to its EC instance URL:
deterministic=True requires SQLite 3.8.3 or higher
I tried this solution, but when I run eb deploy and eb ssh and vi /var/app/venv/staging-LQM1lest/lib/python3.8/site-packages/django/db/backends/sqlite3/base.py, the file still says :
from sqlite3 import dbapi2 as Database
rather than :
from pysqlite3 import dbapi2 as Database
However, in "/var/app/current/venv/lib/python3.8/site-packages/django/db/backends/sqlite3/base.py" it correctly says :
from pysqlite3 import dbapi2 as Database
How can I solve this?
