Cannot import name abbrtask in Django Celery / Celery Python


When you facing this error :

1
cannot import name abbrtask

or

1
celery.utils import abbrtask

That’s meaning youre using some python modules that rely on Celery 2.5.5 version.
To solve this issue :

1
2
pip uninstall celery
pip install "celery<3.0"

And your headache shall gone 🙂


Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.