ModuleNotFoundError: No module named 'haystack.backends.whoosh_cn_backend'错误

ModuleNotFoundError: No module named 'haystack.backends.whoosh_cn_backend’错误

找到settings,将python

HAYSTACK_CONNECTIONS = {
    'default': {
        'ENGINE': 'haystack.backends.whoosh_cn_backend.WhooshEngine',
        'PATH': os.path.join(BASE_DIR, 'whoosh_index'),
    }
}

改成django

HAYSTACK_CONNECTIONS = {
    'default': {
        'ENGINE': 'haystack.backends.whoosh_backend.WhooshEngine',
        'PATH': os.path.join(BASE_DIR, 'whoosh_index'),
    }
}

由于python的django框架在2.0版本以上已经不存在whoosh_cn_backend框架

相关文章
相关标签/搜索