Django新手问题:无法启动新项目

发布于 2024-08-27 09:40:17 字数 395 浏览 5 评论 0原文

我对 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 技术交流群。

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

发布评论

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

评论(4

瘫痪情歌 2024-09-03 09:40:17

请参阅 http://docs.djangoproject.com/en/ dev/ref/django-admin/#startproject-projectname

当使用 django-admin.py 的 --settings 选项或设置环境变量 DJANGO_SETTINGS_MODULE 时,此命令被禁用。要在这些情况下重新启用它,请忽略 --settings 选项或取消设置 DJANGO_SETTINGS_MODULE。

See http://docs.djangoproject.com/en/dev/ref/django-admin/#startproject-projectname

This command is disabled when the --settings option to django-admin.py is used, or when the environment variable DJANGO_SETTINGS_MODULE has been set. To re-enable it in these situations, either omit the --settings option or unset DJANGO_SETTINGS_MODULE.

一向肩并 2024-09-03 09:40:17

您有权限写入该目录吗?

do you have permission to write to the directory?

冰葑 2024-09-03 09:40:17

检查你是否有 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

转身以后 2024-09-03 09:40:17

这个问题很老了,但是......
这是我的回答:

我切换到目录 C:\Python27\Scripts\ 然后输入:

python django-admin.py startproject MyProject

它起作用了!

This question is old, but...
Here is my answer:

I switched to directory C:\Python27\Scripts\ and then typed:

python django-admin.py startproject MyProject

and it worked!

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