1、报错内容:
django.core.cache.backends.base.InvalidCacheBackendError: Could not find backend 'django_redis.cache.RedisCache': cannot import name 'six'
2、措施
(1)需要安装低版本的 Django
pip3 install django==2.2.7
(2)安装完成,运行,还是会报错,如下
File "/usr/local/lib/python3.6/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'
(3)根据报错进行修改源文件
# 注意:这里每个人的路径可能不一样,需要根据报错自己看一下文件路径 vim /usr/local/lib/python3.6/site-packages/django/db/backends/mysql/operations.py # 编辑文件,输入 :set number i # 找到146行,将 decode 改成 encode
保存退出,重启 Django即可