解决“django.core.exceptions.improperlyconfigured”错误
在你的代码中,遇到了 “django.core.exceptions.improperlyconfigured: ‘django.db.backends.mysql‘ isn’t an available database backend” 错误。这表明 django 无法导入 mysql 后端。
原因
问题在于你的代码实际运行在 python 3.8 而非 3.7 上。Python 3.8 中不再内置 mysql 后端。
解决方案
要解决此问题,需要使用第三方包来安装 mysql 后端。具体步骤如下:
pip install mysqlclient
登录后复制
- 修改 settings.py 中的 databases 设置:
DATABASES = { 'default': { 'ENGINE': 'django.db.backends.mysql', ... } }
登录后复制
- 确保使用正确的数据库凭据。
重新运行服务器,错误应得到解决。