Bogdanp / django_dramatiq

A Django app that integrates with Dramatiq.
https://dramatiq.io
Other
331 stars 77 forks source link

dramatiq: error: unrecognized arguments: --watch #91

Closed ThinkTransit closed 3 years ago

ThinkTransit commented 3 years ago

When running with the --reload option I'm getting an error

python manage.py rundramatiq --reload

dramatiq: error: unrecognized arguments: --watch

dramatiq 1.10 django_dramatiq 0.91

Any ideas?

Thank you for the great project

Bogdanp commented 3 years ago

You probably forgot to install the "watch" dependency group. I.e., you need to run pip install dramatiq[rabbitmq,watch] or pip install dramatiq[redis,watch] or install watchdog by itself with pip install watchdog. Feel free to re-open the issue if that doesn't work.