How can I install Django 1.1?

1.3k Views Asked by At

I have a django project This was done some years before and used django 1.1 in it.

Now i want to do some modification in it. In order to do the maintenance i need to install Django 1.1 . And I want to use virtualenv to run this project.

But when I tried to install Django 1.1 using pip it shows the following message:

pip install django==1.1
Downloading/unpacking django==1.1
  Could not find a version that satisfies the requirement django==1.1 (from versions: )
No distributions matching the version for django==1.1

Can anyone help me out from this problem?

1

There are 1 best solutions below

3
On BEST ANSWER

Try capital 'D':

pip install Django==1.1.4

P.S. You can see the available versions on PyPI here: https://pypi.python.org/simple/Django/