Reputation: 4620
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
Reputation: 180441
You need to use pip install Django==1.4
, the ==
specifies the version
Upvotes: 1