Django部署腾讯云服务时候报错:SQLite 3.8.3 or later is required (found 3.7.17)
时间:2020-03-25 10:25:45
收藏:0
阅读:345
自带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
原文:https://www.cnblogs.com/xiao-apple36/p/12563573.html
评论(0)