django 连接mysql ,在terminal输入python manage.py migrate的时候报错
raise ImproperlyConfigured("settings.DATABASES is improperly configured. "
django.core.exceptions.ImproperlyConfigured: settings.DATABASES is improperly configured. Please supply the ENGINE value. Check settings docum
entation for more details.
解决方法:

这两个用#注释
运行如下

在尝试使用Django迁移MySQL数据库时遇到配置错误。错误信息提示'settings.DATABASES'未正确设置,需要提供ENGINE值。解决方案是检查并确保settings.py文件中DATABASES配置包含了正确的数据库引擎。
1386





