django中连接mysql数据库报错“django.core.exceptions.ImproperlyConfigured: mysqlclient 1.3.13 or newer is requ

Posted jungle1219

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了django中连接mysql数据库报错“django.core.exceptions.ImproperlyConfigured: mysqlclient 1.3.13 or newer is requ相关的知识,希望对你有一定的参考价值。

1、报错描述

django中配置了mysql数据库,执行python manage.py makemigrations报错“django.core.exceptions.ImproperlyConfigured: mysqlclient 1.3.13 or newer is required;”

 

2、问题解决

找到python安装目录下的base.py文件,目录参考:/home/用户名/.virtualenvs/项目名/lib/python3.5/site-packages/django/db/backends/mysql/base.py

注视掉这两行:

   # if version < (1, 3, 3):
       # raise ImproperlyConfigured("mysqlclient 1.3.3 or newer is required; you have %s" % Database.__version__) 

 

重新在项目manage.py路径下执行文件迁移命令:

    python manage.py makemigrations

    python manage.py migrate

以上是关于django中连接mysql数据库报错“django.core.exceptions.ImproperlyConfigured: mysqlclient 1.3.13 or newer is requ的主要内容,如果未能解决你的问题,请参考以下文章

Eclipse建立Django项目连接MySQL数据库报错,如图,请问该怎么解决?

django 连接mysql报错

django 连接mysql报错

python3 与 Django 连接数据库报错:ImportError: No module named 'MySQLdb'

Django:模型(model)和数据库(mysql)

Django中MySQL的配置