Home

Published

- 1 min read

run celery on windows

img of run celery on windows

The solution for this is noted below

run celery on windows

Solution

   run celery on windows - #django #celery #redis
--------------------------------
pip install eventlet
celery -A <project-name> worker -l info -P eventlet

pip install gevent
celery -A <project-name> worker -l info -P gevent

Try other methods by searching on the site. That is if this doesn’t work