Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

pip install django --upgrade installs older version

I had installed a development version of django on my dev box (django 1.3 alpha1). I want to upgrade to latest version.. when I :

pip install django --upgrade

I get version 1.2.3 for some reason. How do I use pip to upgrade to the latest version?

like image 203
chris Avatar asked Jun 17 '11 15:06

chris


1 Answers

Found the answer, if you delete the django folder in your build directory (using a virtualenv btw) and then try the upgrade again it will work.

like image 116
chris Avatar answered Sep 17 '22 15:09

chris