Django 项目运行时报错“django.core.exceptions.ImproperlyConfigured: 'django.db.backends.mysql' isn't an available database backend”,如何解决?
运行 django 项目时“django.c++ore.exceptions.improperlyconfigured”错误
项目在运行时出现了如下错误:
django.core.exceptions.improperlyconfigured: 'django.db.backends.mysql' isn't an available database backend or couldn't be imported. check the above exception. to use one of the built-in backends, use 'django.db.backends.xxx', where xxx is one of: 'oracle', 'postgresql', 'sqlite3'
错误分析
此错误表明 django 无法找到或导入 mysql 数据库后端模块。在 python 3.8 中,内置的 mysql 后端驱动已删除。
解决方案
要解决此问题,请确保以下事项:
- 使用正确的 python 版本
问题中提到的 django 和 mysqlclient 版本适用于 python 3.7。请检查你的 python 版本是否正确。
- 安装 mysql 驱动
对于 python 3.8 及更高版本,需要安装 mysql 驱动。可以使用以下命令:
pip install mysql-connector-python
- 修改数据库配置
在 settings.py 中,将数据库后端更新为 "django.db.backends.mysql":
databases = { 'default': { 'engine': 'django.db.backends.mysql', # 其他数据库配置... } }
- 重启 django 服务
安装 mysql 驱动后,务必重启 django 服务以加载新驱动。你可以使用以下命令:
python manage.py runserver
提示:
如果在安装 mysql-connector-python 时遇到问题,请确保已安装以下依赖项:
以上就是Django 项目运行时报错“django.core.exceptions.ImproperlyConfigured: 'django.db.backends.mysql' isn't an available database backend”,如何解决?的详细内容,更多请关注其它相关文章!