django.core.exceptions.ImproperlyConfigured: mysqlclient 1.3.13 or newer is required; you have 0.9.3

Posted 遥~

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了django.core.exceptions.ImproperlyConfigured: mysqlclient 1.3.13 or newer is required; you have 0.9.3相关的知识,希望对你有一定的参考价值。

In settings.py:

import pymysql

pymysql.install_as_MySQLdb()

add a line of code:

import pymysql
pymysql.version_info=(1,3,13,"final",0)
pymysql.install_as_MySQLdb()

  

以上是关于django.core.exceptions.ImproperlyConfigured: mysqlclient 1.3.13 or newer is required; you have 0.9.3的主要内容,如果未能解决你的问题,请参考以下文章