I have created a django-celery application as in the tutorial at:
http://docs.celeryproject.org/en/master/django/first-steps-with-django.html
Everything works fine when I run it without application parameter as in:
$ python manage.py celery worker -l info
but I can't start it at all with the application parameter, as in:
$ python manage.py celery worker -A myapp -l info
where myapp is the name given to the application when I created the project with:
$ python manage.py startapp myapp
The error that I am getting is:
ImportError: No module named celery
Does anyone know why this happens and how to solve it?
-Aargument is for celery applications, not for Django applications... They are not used by django-celery at the moment.