I created an 'account' app in my project and I add to installed app and this code;
INSTALLED_APPS = [
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'django.contrib.sites',
'account',
'allauth',
'allauth.account',
'allauth.socialaccount',
]
And, I run this project (python manage.py runserver
), I have one problem:
django.core.exceptions.ImproperlyConfigured: Application labels aren't unique, duplicates: account
I not have seen before this problem and I don't have any idea.