Search code examples
pythoncelery

How to run celery on windows?


How to run celery worker on Windows without creating Windows Service? Is there any analogy to $ celery -A your_application worker?


Solution

  • It's done the same way as in Linux. Changing directory to module containing celery task and calling "c:\python\python" -m celery -A module.celery worker worked well.