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

公式の Github リポジトリから必要なバージョンを直接 request.txt に指定することができます。私はこの方法を行ったことがないので、順を追って説明することはできませんが、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 に答える