7

我在virtualenv上试过:

(venv) $ pip install Django==1.0.4
Downloading/unpacking Django==1.0.4
  Could not find a version that satisfies the requirement Django==1.0.4 (from versions: )
No distributions matching the version for Django==1.0.4
Storing complete log in /home/tokibito/.pip/pip.log
4

3 回答 3

12

不幸的是,PyPI 只有 Django 1.1.4 及更高版本。如果你想要旧版本,你可以直接从 github 安装:

pip install git+https://github.com/django/django.git@1.0.4

于 2012-12-14T01:09:28.110 回答
1

您总是可以将您的 requirements.txt直接指向您想要的来自官方 Github 存储库的版本。我从来没有这样做过,所以我无法引导您完成它,但如果您需要运行不在 PyPI 上的特定版本,这似乎是一个可行的选择。

于 2012-12-14T01:09:35.333 回答
1

您可以在 requirements.txt 文件中指定替代代码源。

#Django==1.0.4
git+https://github.com/django/django.git@1.0.4
于 2013-05-27T13:53:44.287 回答