PyCharm:DJANGO_SETTINGS_MODULE 未定义

发布于 2024-11-06 13:21:35 字数 282 浏览 0 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(6

梦断已成空 2024-11-13 13:21:35

我也有同样的问题。我的 django 支持的设置为空:

PyCharm project config

I had the same problem. The settings of my django support was empty:

PyCharm project config

旧人九事 2024-11-13 13:21:35

我也遇到了同样的问题,并且 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.

Now you know where to stick it.

颜漓半夏 2024-11-13 13:21:35

您可以转到显示下拉菜单的工具栏,然后选择您的项目 -> 编辑配置。在环境变量区域中输入 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 .

怀里藏娇 2024-11-13 13:21:35

我遇到了同样的问题,并且提出的解决方案不起作用。

我通过进入“文件>设置...”解决了这个问题
然后搜索“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

一个人练习一个人 2024-11-13 13:21:35

对于新用户,以下是附加信息。

在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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文