Django部署阿里云服务时候报错:SQLite 3.8.3 or later is required (found 3.7.17)_数据库_

问题描述:
在阿里云的自带centos上运行python manage.py runserver的时候报错:
django.core.exceptions.ImproperlyConfigured: SQLite 3.8.3 or later is required (found 3.7.17).

解决方法1:给django降级

1.卸载django: pip uninstall django
2.安装低版本: pip install django==2.1.8

解决方法2:升级SQLite

原文地址:https://www.cnblogs.com/sea-stream/p/14181528.html