搜索
您的当前位置:首页正文

pycharm不支持django的解决方法

来源:二三四教育网

不支持现象:

django.core.exceptions.ImproperlyConfigured: Requested setting CACHES, but settings are not configured. You must either define the environment variable DJANGO_SETTINGS_MOD

解决办法如下:

1.在需要执行的程序中添加:

import django

django.setup()

2.在pycharm的设置中设置settings路径即可(app.settings)

更多Python知识,请点击!!

Top