0

我正在尝试使用的项目具有 django 导入,因此我正在尝试安装 django。

在 Windows 中。

我找到了有关如何安装它的说明http://effbot.org/zone/django.htm#installing - 它需要从 svn 存储库中提取。

我安装了 Mercurial hg - 所以我不应该安装 svn - 并且https://www.mercurial-scm.org/wiki/WorkingWithSubversion说我可以使用类似的命令

svn co http://code.djangoproject.com/svn/django/trunk/django.

但是,当我运行它时出现错误:

'svn' is not recognized as an internal or external command, operable program or batch file.

那么,当我的系统上已经安装了 python27、sqlite、postgres 和 Mercurial 时,我该怎么做才能在 Windows 上安装 django?

4

2 回答 2

4

您指出的文档已过时。你不需要也不需要svn安装hgDjango。我建议阅读官方安装文档https://docs.djangoproject.com/en/1.4/intro/install/并使用稳定版本而不是查看最新代码。

于 2012-07-13T20:39:20.430 回答
0

'svn' is not recognized as an internal or external command表示svn未安装或在您的SYSTEM PATH.

确保svn您使用的任何工具已正确安装并且在您的系统路径中,然后继续django 安装

于 2012-07-13T20:47:15.460 回答