When I run python3 manage.py runserver 10.0.1.150:000
I get the error saying django.core.exceptions.ImproperlyConfigured: SQLite 3.8.3 or later is required (found 3.7.17).
so i go and check the version of SQlite by doing LD_LIBRARY_PATH='/opt/atomicorp/atomic/root/usr/lib64/' python3
then import sqlite3
, and after that sqlite3.sqlite_version
. I get '3.8.5'
I am extremely confused on why this isn't working and I have thought of some reasons why, like maybe the system isn't detecting the update or something like that.