如何在 Windows Vista 中取消设置 DJANGO_SETTINGS_MODULE?
我在这里遇到这个问题: 帮助 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对于 Vista 或 7,您应该有
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 theDJANGO_SETTINGS_MODULE
environment variable: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.我知道已经过去很长时间了,无论如何,我最近遇到了这个问题,这让我发布了我修复的方式。
如果你设置
那么你必须通过以下方式取消设置
或者如果你这样做了
然后尝试这个
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
then you have to unset it via
or if u did it like
then try this