关于Django报错django.core.exceptions.ImproperlyConfigured: Requested setting DEBUG, but settings are not configure

报错代码:
django.core.exceptions.ImproperlyConfigured: Requested setting DEFAULT_INDEX_TABLESPACE, but settings are not configured. You must either define the environment variable DJANGO_SETTINGS_MODULE or call settings.configure() before accessing settings

解决方法:

添加环境变量:

 DJANGO_SETTINGS_MODULE=projecname.settings #projectname是你的项目名字

其他的自己百度,还有许多其他方法。

原文地址:https://www.cnblogs.com/accolade/p/10757491.html