Django新手问题:无法启动新项目
我对 django 完全陌生,我正在使用它的文档来获取有关如何使用它的帮助
但似乎缺少了一些东西。我使用 setup.py install 命令安装了 django 我将( django/bin )添加到系统路径变量但是。我仍然无法开始新项目
我使用以下语法来启动项目:
<代码> django-admin.py startproject myNewProject
但它说
<代码> 输入“django-admin.py help”以了解用法。
1
更新:
我使用 Windows Vista x64 。我检查了环境变量,里面没有 DJANGO_SETTINGS_MODULE 变量。我应该加一个吗?有什么价值?
我错过了什么吗?
感谢你
I'm totally new to django, and I'm using its documentation to get help on how to use it
but seems like something is missing. i installed django using setup.py install command
and i added the ( django/bin ) to system path variable but. i still cant start a new project
i use the following syntax to start a project :
django-admin.py startproject myNewProject
but it says
Type 'django-admin.py help' for usage.
1
UPDATES :
i use windows vista x64 . i checked the environment variables and i don't have DJANGO_SETTINGS_MODULE variable in there . should i add one ?? and with what value ?
do i miss anything ?
thank u
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
请参阅 http://docs.djangoproject.com/en/ dev/ref/django-admin/#startproject-projectname
See http://docs.djangoproject.com/en/dev/ref/django-admin/#startproject-projectname
您有权限写入该目录吗?
do you have permission to write to the directory?
检查你是否有 djagno 以及它是否在 python 路径中。如果使用 linux,请转到终端类型 python,然后尝试导入 django
check whether you have djagno or not and the it is in python path or not.if using linux go to terminal type python and then try to import django
这个问题很老了,但是......
这是我的回答:
我切换到目录
C:\Python27\Scripts\
然后输入:它起作用了!
This question is old, but...
Here is my answer:
I switched to directory
C:\Python27\Scripts\
and then typed:and it worked!