nobalG
nobalG

Reputation: 4620

Installing lower version(1.4) of django on already installed Django 1.6

I initially installed Django 1.6.5 on my Pc,now when i was trying to install 1.4 then i came to know that

If you installed Django using pip or easy_install previously, installing with pip or easy_install again will automatically take care of the old version, so you don’t need to do it yourself.

from here

but in mycase i am downgrading,and successfully downloaded the 1.4 using pip,but it is still displaying the version 1.6 when i check.How to get rid of the 1.6?

Upvotes: 0

Views: 223

Answers (1)

Padraic Cunningham
Padraic Cunningham

Reputation: 180441

You need to use pip install Django==1.4, the == specifies the version

Upvotes: 1

Related Questions