码迷,mamicode.com
首页 > 数据库 > 详细

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

时间:2020-06-01 13:33:57      阅读:112      评论:0      收藏:0      [点我收藏+]

标签:sts   required   插入   安装   代码   configure   版本   tps   ons   

安装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 have 0.9.3.

标签:sts   required   插入   安装   代码   configure   版本   tps   ons   

原文地址:https://www.cnblogs.com/johnyang/p/13024574.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!