异常汇总:https://www.cnblogs.com/dotnetcrazy/p/9192089.html

这个是Django对MySQLdb版本的限制,我们使用的是PyMySQL,所以不用管它

django.core.exceptions.ImproperlyConfigured: mysqlclient 1.3.13 or newer is required; you have 0.9.3.

再继续运行:AttributeError: 'str' object has no attribute 'decode'

我们输出看看啥情况
django.core.exceptions.ImproperlyConfigured: mysqlclient 1.3.13 or newer is required; you have 0.9.3.

字符串当然没decode方法
django.core.exceptions.ImproperlyConfigured: mysqlclient 1.3.13 or newer is required; you have 0.9.3.

改为encode即可
django.core.exceptions.ImproperlyConfigured: mysqlclient 1.3.13 or newer is required; you have 0.9.3.

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-11
  • 2021-10-01
  • 2021-10-27
  • 2022-12-23
猜你喜欢
  • 2022-01-17
  • 2021-10-24
  • 2021-09-04
  • 2021-05-30
相关资源
相似解决方案