[Answered ]-No module named 'Queue' when I try to start celery

2👍

It turns out that django-kombu was moved into the kombu core. So, the following changes got things working again for me:

  1. Uninstall django-kombu
  2. In settings, remove djkombu from INSTALLED_APPS and replace with kombu.transport.django.
  3. In settings, update BROKER_BACKEND to django
👤Josh

Leave a comment