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

Django - installing mysqlclient error: mysqlclient 1.3.13 or newer is required; you have 0.9.3

时间:2019-10-28 18:56:56      阅读:97      评论:0      收藏:0      [点我收藏+]

标签:lin   inux   code   class   mysql   官方   ocs   encode   driver   

环境

Deepin Linux 15.11
Django 2.2
pymysql0.9.3


原因

因为用pymysql替换了默认的mysqlclient,Django官方推荐的数据库API driver是mysqlclient。

https://docs.djangoproject.com/en/2.2/ref/databases/#mysql-db-api-drivers

解决方法1 使用mysqlclient,去除pymysql

不要用pymysql。用mysqlclient。
安装方法:https://github.com/PyMySQL/mysqlclient-python#install


解决方法2 仍然使用pymysql

2.1 配置文件的目录中_init_.py中有如下代码

import pymysql

pymysql.install_as_MySQLdb()    # 这是一个hack,为了在Djano中替代默认的mysqlclient。mysqlclient官方描述:This is a fork of MySQLdb1

2.2 点进去install_as_MySQLdb
找到version_info变量,改成

version_info = (1, 3, 13, "final", 0)

2.3 改变django.db.backends.mysql.operations.py的一行代码

query = query.decode(errors='replace') -> query = query.encode(errors='replace')

原因:mysqlclient returns bytes object, PyMySQL returns str object
参考:https://github.com/PyMySQL/PyMySQL/issues/790#issuecomment-484201388


解决方法3 仍然使用pymysql,和解决方法2类似

https://stackoverflow.com/a/55954355/5955399

Django - installing mysqlclient error: mysqlclient 1.3.13 or newer is required; you have 0.9.3

标签:lin   inux   code   class   mysql   官方   ocs   encode   driver   

原文地址:https://www.cnblogs.com/allen2333/p/11754161.html

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