Django Celery: manage.py celeryd returns "Unknown Command"

10,305

Doesn't look like you have djcelery anywhere in your installed apps

Using django-celery

To enable django-celery for your project you need to add djcelery to INSTALLED_APPS:

INSTALLED_APPS += ("djcelery", )

http://pypi.python.org/pypi/django-celery#documentation

Share:
10,305
Haskell-newb
Author by

Haskell-newb

/* no comments*/

Updated on June 12, 2022

Comments

  • Haskell-newb
    Haskell-newb almost 2 years

    I'm trying to setup Celery with Django ORM as backend.

    I've installed all required packages(django-celery, djkombu), done everything specified by the docs, ran syncdb to generate necessary DB tables.

    Still, when I'm trying to launch Celery through manage.py command, I'm getting an 'Unknown Command' error.

    python manage.py celeryd
    Unknown command: 'celeryd'
    

    I think I'm missing some crucial detail but can't figure out what.

    This is how my settings.py file look like. Can anyone please point out what I'm doing wrong?