Django 安装帮助
我试图通过输入 THEFULLPATH\django-admin.py startproject mysite
来创建我的第一个项目,但它不起作用。我的当前目录中没有创建“mysite”目录。相反,它为我提供了 django-admin.py 可用的命令列表。请参阅下面的屏幕截图了解更多详细信息。
I'm trying to create my first project by typing in THEFULLPATH\django-admin.py startproject mysite
but its not working. No 'mysite' directory created in my current directory. Instead it gives me a list of commands that is available with django-admin.py. See the below screenshot for more details.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要专门使用 python 运行脚本,所以:
我不确定它为什么会这样,而且它确实很烦人。
You need to specifically run the script with python, so:
I'm not sure why it behaves like this, and it sure is annoying..
问题(正如您的其他问题所述), 此处记录。您需要取消设置环境变量
DJANGO_SETTINGS_MODULE
。您可以通过
在 DOS 命令提示符处键入:来执行此操作。
The problem (as your other question states), is documented here. You need to unset the environment variable
DJANGO_SETTINGS_MODULE
.You can do this by typing:
at a DOS command prompt.