Django踩坑之django.core.exceptions.ImproperlyConfigured mysqlclient 1.3.13 or newer is required; you ha

Posted JohnYang

tags:

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

安装Django3后不想折腾mysqlclient那堆库文件,直接装了pymysql替代mysqlclient,报错:django.core.exceptions.ImproperlyConfigured mysqlclient 1.3.13 or newer is required; you have 0.9.3.。实际上pymysql版本号是 0.9.3,却明目张胆篡改version_info欺骗Django??。这样一来就简单了,patch一下这个属性就行了嘛, 修改__init__.py,多插入一行代码:

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

参考博客:https://yuntianti.com/posts/fix-django3-mysqlclient-import-error/

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

在 Django 的 settings.py 中导入模型

Vue踩坑之axios

SpringCloud踩坑之fein

MyBatis踩坑之SQLProvider转义字符被删除问题

fastjson踩坑之put

FlatList踩坑之onEndReached