Django 报错信息总结

1、主要信息:    from suit.apps import DjangoSuitConfig  ModuleNotFoundError: No module named 'suit.apps'

是因为django-suit安装版本的问题,卸载重装就好了

pip uninstall django-suit
pip install https://github.com/darklow/django-suit/tarball/v2

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

是因为,我在INSTALLED_APPS里面,写了两次app,去掉一个就好了

你可能感兴趣的:(Python)