django2.2 和 PyMySQL版本兼容问题
作者:studytime
这篇文章主要介绍了django2.2 和 PyMySQL版本兼容问题,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
错误信息为
django.core.exceptions.ImproperlyConfigured: mysqlclient 1.3.13 or newer is required; you have 0.9.3.
错误原因:
因为Django连接MySQL时默认使用MySQLdb驱动,但MySQLdb不支持Python3,因此这里将MySQL驱动设置为pymysql。由此产生的版本兼容问题。
pymysql安装方法:
#安装pymysql pip install pymysql #__init__.py import pymysql pymysql.install_as_MySQLdb()
解决办法:
1. django降到2.1.4版本
2. 修复源码
2.1 找到Python环境下 django包,并进入到backends下的mysql文件夹
# 使用此命令可以看到对应的文件夹目录 ➜ daliyfresh pip install pymysql Looking in indexes: https://mirrors.aliyun.com/pypi/simple/ Requirement already satisfied: pymysql in /Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages (0.9.3)
2.2 找到base.py文件,注释掉 base.py 中如下部分(35/36行)
if version < (1, 3, 3): raise ImproperlyConfigured("mysqlclient 1.3.3 or newer is required; you have %s" % Database.__version__)
2.3 此时仍然报错,找到operations.py文件,将decode改为encode
AttributeError: ‘str' object has no attribute ‘decode'
解决办法:
#linux vim 查找快捷键:?decode if query is not None: query = query.decode(errors='replace') return query #改为 if query is not None: query = query.encode(errors='replace') return query
测试,执行数据迁移
python manage.py makemigrations python manage.py migrate
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。
您可能感兴趣的文章:
- mysql 8.0.24版本安装配置方法图文教程
- MySQL8.0.24版本Release Note的一些改进点
- mysql的MVCC多版本并发控制的实现
- MySQL8.0.23版本的root密码重置最优解法
- 关于MyBatis连接MySql8.0版本的配置问题
- 解决seata不能使用mysql8版本的问题方法
- 详解DBeaver连接MySQL8以上版本以及解决可能遇到的问题
- IDEA使用mybatis-generator及配上mysql8.0.3版本遇到的bug
- MySQL5.x版本乱码问题解决方案
- CentOS7版本安装Mysql8.0.20版本数据库的详细教程
- Mysql5.7及以上版本 ONLY_FULL_GROUP_BY报错的解决方法
- 解决mysql8.0.19 winx64版本的安装问题
- Linux下二进制方式安装mysql5.7版本和系统优化的步骤
- mysql 8.0.18各版本安装及安装中出现的问题(精华总结)
- 超详细教你怎么升级Mysql的版本