Reputation: 85
Hi I am trying to implement elasticsearch using django. I am following this tutorial
I am getting ,
Unknown command: 'search_index'
Type 'manage.py help' for usage.
when trying to create index using cmd
python manage.py search_index --rebuild
please help
Upvotes: 3
Views: 2146
Reputation: 4333
The issue could be not adding django-elasticsearch-dsl
to INSTALLED_APPS
in Django. (This is available in settings.py file)
Upvotes: 8