问题
Django 3.0 使用 haystack 报错 ImportError: cannot import name 'six' from 'django.utils'

原因
Django 3.x 版本移除了部分用于兼容Python2 的 API
参见 Removed private Python 2 compatibility APIs

解决办法
方案一
安装 six

pip install six
1
将安装好的 six 文件复制到 'django 的 utils 目录下,安装库位于 Python 安装目录下 Lib\site-packages 内或虚拟环境目录 Lib\site-packages 内。

注:
haystack 中的 inputs.py 中使用 django.utils.encoding.python_2_unicode_compatible() 是 six.python_2_unicode_compatible() 的别名,则需要更改 Lib\site-packages\haystack\inputs.py

from django.utils.encoding import force_text, python_2_unicode_compatible
1
改为

from django.utils.encoding import force_text
from django.utils.six import python_2_unicode_compatible
1
2
方案二
使用Django 2.x
————————————————
版权声明:本文为CSDN博主「Jairoguo」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/Jairoguo/article/details/105350115

发表评论

邮箱地址不会被公开。 必填项已用*标注