ComputerFellow
ComputerFellow

Reputation: 12108

How do I get an older version of Django? Pip says could not find version

I need Django 0.96. I have a huge Django project which I need to run, but it's very very tied to 0.96, I could take a looot of time to port it 1.x

When I do pip install django==0.96 I get this

Could not find a version that satisfies the requirement django==0.96 (from versions: 1.1.3, 1.1.4, 1.2.1, 1.2.2, 1.2.3, 1.2.4, 1.2.5, 1.2.6, 1.2.7, 1.2, 1.3.1, 1.3.2, 1.3.3, 1.3.4, 1.3.5, 1.3.6, 1.3.7, 1.3, 1.4.1, 1.4.2, 1.4.3, 1.4.4, 1.4.5, 1.4.6, 1.4.7, 1.4.8, 1.4, 1.5.1, 1.5.2, 1.5.3, 1.5.4, 1.5)

How do I Install Django 0.96?

Upvotes: 10

Views: 1648

Answers (2)

jabaldonedo
jabaldonedo

Reputation: 26572

That old version is not available on pip. Here are the links to versions of branch 0.96.x: 0.96.5, 0.96.4, 0.96.3, 0.96.2, 0.96.1 and 0.96

Upvotes: 9

Tommaso Barbugli
Tommaso Barbugli

Reputation: 12031

You can install from git repo:

pip install git+https://github.com/django/django@c939b2a1cb22b5035b1ccf90ee7686f334e6049d#egg=django==0.96.5

Upvotes: 10

Related Questions