报错一:
django.core.exceptions.ImproperlyConfigured: mysqlclient 1.3.13 or newer is required; you have 0.9.3.
解决方法:编辑文件,注释掉如下行:
version = Database.version_info # if version < (1, 3, 13): # raise ImproperlyConfigured(‘mysqlclient 1.3.13 or newer is required; you have %s.‘ % Database.__version__)
报错二:
File "D:datagitee.comExamOnlinevenvlibsite-packagesdjangodbbackendsmysqloperations.py", line 146, in last_executed_query query = query.decode(errors=‘replace‘) AttributeError: ‘str‘ object has no attribute ‘decode‘
解决方法:
编辑文件operations.py,注释掉如下行
query = getattr(cursor, ‘_executed‘, None) # if query is not None: # query = query.decode(errors=‘replace‘) return query