Django学习过程中遇到的问题

Posted testerabner

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Django学习过程中遇到的问题相关的知识,希望对你有一定的参考价值。

 

一、Django数据同步过程中遇到的问题:

  

1、raise ImproperlyConfigured(‘mysqlclient 1.3.13 or newer is required; you have %s.‘ % Database.__version__)

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

  解决办法:C:\\Python37\\Lib\\site-packages\\django\\db\\backends\\mysql(python安装目录)打开base.py,注释掉以下内容:

        if version < (1, 3, 13):

          raise ImproperlyConfigured(‘mysqlclient 1.3.13 or newer is required; you have %s.‘ % Database.__version__)

  

2、File "C:\\Python37\\lib\\site-packages\\django\\db\\backends\\mysql\\operations.py", line 146, in last_executed_query

    query = query.decode(errors=‘replace‘)

  AttributeError: ‘str‘ object has no attribute ‘decode‘

  解决办法:打开此文件把146行的decode修改为encode

 

以上是关于Django学习过程中遇到的问题的主要内容,如果未能解决你的问题,请参考以下文章

使用 django 将 Python 正则表达式转换为路径时遇到问题

关于使用Django过程中我遇到的TypeError: 'module' object is not iterable

Django2.1集成xadmin管理后台所遇到的错误集锦,解决填坑

学习JavaEE过程中遇到的各种(奇葩)问题

springboot学习过程中遇到的问题(遇到再总结)

react学习过程中遇到的问题