pycharm不支持django的解决方法
Ly
2020-06-20 11:22:435022浏览 · 0收藏 · 0评论
不支持现象:
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知识,请点击Python视频教程!!
关注公众号,随时随地在线学习