xapian 和 django-haystack
我的 django-haystack 有问题。根据本教程 我得到了这个应用程序: Django 干草堆 xapian-haystack
我设置了所有内容,但出现此错误: django.core.exceptions.ImproperlyConfigured:“xapian”不是可用的搜索后端。可用选项有:“dummy”、“solr”、“whoosh”
为什么 xapian 不可用? 感谢您的帮助。
I have a problem with django-haystack. According to this tutorial I got this apps:
django-haystack
xapian-haystack
I set everything but i have this error:
django.core.exceptions.ImproperlyConfigured: 'xapian' isn't an available search backend. Available options are: 'dummy', 'solr', 'whoosh'
Why xapian is not available?
Thanks for your help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
由于许可差异,Xapian 未包含在 Haystack 中。您必须从 http://github.com/notanumber/xapian-haystack 获取 xapian 后端。
Xapian isn't included with Haystack due to licensing differences. You have to get the xapian backend from http://github.com/notanumber/xapian-haystack.
要安装 xapian,您可能需要 xapian 和 xapian-bindings。所以现在,您只需使用以下命令安装 xapian-haystack :
或
To install xapian, you may need xapian and xapian-bindings. So now, you just have to install xapian-haystack with :
or
我不认为 xapian 包含在任何这些 python 库中。它们只允许您从 python 代码中利用 xapian。你需要先安装 xapian 本身。
在这里查看更多信息:http://xapian.org/
i don't think that xapian is included with any of these python libraries. they only allow you to leverage xapian from python code. you need to install xapian itself first.
see more here: http://xapian.org/