I have a problem with django-haystack. By in this tutorial I received the following applications: Django-stack Xapian-stack
I install everything except this error: django.core.exceptions.ImproperlyConfigured: "xapian" is not an available search backend. The following options are available: 'dummy', 'solr', 'whoosh'
Why is xapian unavailable? Thank you for your help.
Xapian is not part of Haystack due to licensing differences. You should get the xapian backend from http://github.com/notanumber/xapian-haystack .
To install xapian, you may need xapian and xapian-bindings. So, now you just need to install xapian-haystack with:
pip install xapian-haystack
or
easy_install xapian-haystack
I don't think xapian is included in any of these python libraries. they allow you to use xapian from python code. you need to install xapian first.
see here: http://xapian.org/
Source: https://habr.com/ru/post/1299796/More articles:Trying to use ResourceDictionary, but styles appear in it as not found - coding-styleYou need a regular expression to get rid of the brackets in the html image tag filename - c #What are the development trade-offs for Windows CE 6.0 and Windows Mobile 6.1 - .netWhy does GetErrorMessage return an "invalid password" when an invalid username? - c ++how to assign a base object to a derived object - c ++Push_back causes an error when using vectors in C ++ - c ++How to use VisualSVN to support both local and remote source paths? - svnThe magic size of QTextEdit - qtHow to create a multi-column list? - c ++Why does OpenGL have global features? - c ++All Articles