PyCharm:DJANGO_SETTINGS_MODULE 未定义
我正在使用 PyCharm IDE,当我运行任何 file.py
时,我收到此错误:
..raise ImportError("无法导入设置,因为环境 变量 %s 未定义。" % ENVIRONMENT_VARIABLE) ImportError: 无法导入设置,因为环境变量 DJANGO_SETTINGS_MODULE 未定义。
如何在 PyCharm 中配置 DJANGO_SETTINGS_MODULE 环境变量?
I am using PyCharm IDE and when I run any file.py
I get this error:
..raise ImportError("Settings cannot be imported, because environment
variable %s is undefined." % ENVIRONMENT_VARIABLE) ImportError:
Settings cannot be imported, because environment variable
DJANGO_SETTINGS_MODULE is undefined.
How to configure DJANGO_SETTINGS_MODULE
environment variable in PyCharm?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
我也有同样的问题。我的 django 支持的设置为空:
I had the same problem. The settings of my django support was empty:
我也遇到了同样的问题,并且 IntelliJ IDEA 中的修复并不明显(特别是因为没有针对此问题的“修复”链接的通知)。
你会发现你需要在 Project Structure > 中将 Settings 设置为 Django 项目的 settings.py 文件。模块> [您的 Django 项目名称] >姜戈。
I had the same problem as well, and the fix in IntelliJ IDEA is not obvious (especially since there is no notification with a "fix-it" link for this problem).
You'll find you need to set Settings to your Django project's settings.py file in Project Structure > Modules > [your Django project's name] > Django.
您可以转到显示下拉菜单的工具栏,然后选择您的项目 -> 编辑配置。在环境变量区域中输入 DJANGO_SETTINGS_MODULE mysite.settings 并保存。
You can go to the tool bar which shows a dropdown and select your project ->edit configuration. There in the Environment variable area enter DJANGO_SETTINGS_MODULE mysite.settings and save .
"独立 Django 脚本"
"Standalone Django scripts"
我遇到了同样的问题,并且提出的解决方案不起作用。
我通过进入“文件>设置...”解决了这个问题
然后搜索“Django console”并添加以下环境变量:DJANGO_SETTINGS_MODULE=mysite.settings
I faced the same problem and proposed solutions did not work.
I solved it by going in "File > Settings..."
Then search for "Django console" and add the following Environment variable: DJANGO_SETTINGS_MODULE=mysite.settings
对于新用户,以下是附加信息。
在pycharm 2019.1中可以找到设置DJANGO_SETTINGS_MODULE的地方是:
config ->语言和框架 ->姜戈的右侧疼痛。
在 django 项目根下面的列中,您可以引用您的配置文件路径。
您可以在环境变量列中设置 DJANGO_SETTINGS_MODULE 值。
for new commers, below is the additional info'.
where you can find the place to set DJANGO_SETTINGS_MODULE in pycharm 2019.1 is:
config -> language and frameworks -> Django's right pain.
the column just below the django project root you can cite your config file path.
and the environment variables column you can set DJANGO_SETTINGS_MODULE value.