如何在 Windows Vista 中取消设置 DJANGO_SETTINGS_MODULE?

发布于 2024-10-12 01:40:16 字数 319 浏览 2 评论 0原文

我在这里遇到这个问题: 帮助 Django 安装

解决方法似乎在这里:http://code.djangoproject.com/ticket/11980

我的问题是如何取消设置 DJANGO_SETTINGS_MODULE

I have this problem here: Help with Django Installation

The workaround seems to be here: http://code.djangoproject.com/ticket/11980

My problem is how do I unset the DJANGO_SETTINGS_MODULE

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

白龙吟 2024-10-19 01:40:16

对于 Vista 或 7,您应该有 setx 命令。以下命令应删除 DJANGO_SETTINGS_MODULE 环境变量:

setx DJANGO_SETTINGS_MODULE ""

您可能需要在命令末尾添加 /M 标志。

setx 只能将变量设置为空,而不能删除它。因此,如果将其设置为空不起作用,您可以尝试使用 GUI。我只是不确定那是 Vista 还是 Windows 7。

With Vista or 7, you should have the setx command. The following command should remove the DJANGO_SETTINGS_MODULE environment variable:

setx DJANGO_SETTINGS_MODULE ""

You may need to add the /M flag at the end of the command.

The setx can only set the variable to empty, not delete it. So if setting it to empty does not work, you could try using the GUI. I'm just not sure if that's Vista or Windows 7.

稍尽春風 2024-10-19 01:40:16

我知道已经过去很长时间了,无论如何,我最近遇到了这个问题,这让我发布了我修复的方式。

如果你设置

设置 DJANGO_SETTINGS_MODULE="您的一些设置文件"

那么你必须通过以下方式取消设置

设置 DJANGO_SETTINGS_MODULE=

或者如果你这样做了

export DJANGO_SETTINGS_MODULE=“您的一些设置文件”

然后尝试这个

导出 DJANGO_SETTINGS_MODULE=

I know its been so long anyway i have faced this issue recently that made me to post the way i fixed.

if you set

set DJANGO_SETTINGS_MODULE="some of your settings file"

then you have to unset it via

set DJANGO_SETTINGS_MODULE=

or if u did it like

export DJANGO_SETTINGS_MODULE= "some of your settings file"

then try this

export DJANGO_SETTINGS_MODULE=

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