django.core.exceptions.ImproperlyConfigured: Application labels aren't unique, duplicates:

当我们运行自己的Django项目时,会出错

django.core.exceptions.ImproperlyConfigured: Application labels aren't unique, duplicates: 应用名

为什么会出现这样的错误呢?

因为你在settings.py文件中添加了应用导致的,可是我们知道应用使用前就应该在settings.py中配置才能用啊?!

确实是这样,但是当我们用pycharm直接创建Django项目时,它会让我们填写你的应用名,在这种情况下创建的应用就不用在

setting.py文件中配置了,配置了反而会有错!django.core.exceptions.ImproperlyConfigured: Application labels aren't unique, duplicates:_第1张图片

django.core.exceptions.ImproperlyConfigured: Application labels aren't unique, duplicates:_第2张图片 当我们使用命令创建应用时要在settings.py文件中进行配置!

python manage.py startapp 应用名

 


希望能够帮助你!

django.core.exceptions.ImproperlyConfigured: Application labels aren't unique, duplicates:_第3张图片

你可能感兴趣的:(Django)