使用django运行python项目报错django.core.exceptions.ImproperlyConfigured: SQLite 3.8.3 or later is required

raise ImproperlyConfigured('SQLite 3.8.3 or later is required (found %s).' % Database.sqlite_version)
django.core.exceptions.ImproperlyConfigured: SQLite 3.8.3 or later is required (found 3.7.17).

在云服务器上面运行python manage.py runserver 0.0.0.0:80 报错,
解决办法:
给django版本降级:
卸载django: pip uninstall django
安装低版本: pip install django==2.1.8

你可能感兴趣的:(编码报错,python,django)