Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Installing specific version of django

Tags:

django

I am trying to install django 1.4.3 using pip. I am running

$ sudo pip unistall django
$ sudo pip install django==1.4.3

and I get the following messagin during installation

 Requested django==1.4.3, but installing version 1.5.1

I can give more code if needed. Thanks!

like image 456
user2136807 Avatar asked Nov 04 '22 00:11

user2136807


1 Answers

I met the same problem while install Twisted. requiring 10.0.0 but install 13.0.0, finally I get the 10.0.0 package and download src, mannually installed it. just change https://pypi.python.org/pypi/Twisted/13.0.0 to https://pypi.python.org/pypi/Twisted/10.0.0

like image 56
user1466252 Avatar answered Nov 22 '22 06:11

user1466252