As i was going through the Celery implementation from the Celery documentation,
celery -A tasks worker --loglevel=INFO
gave output unexpected that from the documentation,
File "d:\101_all_projects\celery-testing\venv\lib\site-packages\celery\platforms.py", line 9, in import grp ModuleNotFoundError: No module named 'grp'
Is this because i am on windows?
If you're using the PyPi package django-celery-beat it looks like it installs the most recent version of the required package celery rather than installing a compatible version (by the time I'm posting this, 25th of May 2021 this would be v5.1.0), which seems to have compatibility issues with django-celery-beat version 2.2.0 (the most recent) as well as Windows OS.
I suggest you try
pip uninstall celery
pip install celery==5.0.5
This is fixed with celery ^5.1.1
as you can see here. You just need to update celery now
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With