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).

给django降级

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

猜你喜欢

转载自www.cnblogs.com/xiao-apple36/p/12563573.html