[Answered ]-Django Celery installation Error

1👍

I think the problem is with a space char at the end of djcelery in INSTALLED_APPS. Try to remove it and run syncdb again. Hope that helps.

👤alecxe

1👍

Try:

INSTALLED_APPS = (
    'django.contrib.auth',

    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.sites',
    'django.contrib.messages',
    'django.contrib.staticfiles',
    # Uncomment the next line to enable the admin:
    'django.contrib.admin',
    # Uncomment the next line to enable admin documentation:
    # 'django.contrib.admindocs',
    'pet',
    'kombu.transport.django',
    'djcelery ',
)
👤pawss

Leave a comment