When trying to download django through:
sudo pip uninstall django
However, this downloads the new version of django 1.5. How would I force down
This can be done by using this command
sudo pip install django==1.4 #or any desired version.
should work.