Issue
I want to install some specific version of a package (in this case Django) inside the virtual environment. I can't figure it out.
I'm on Windows XP, and I created the virtual environment successfully, and I'm able to run it, but how am I supposed to install the Django version I want into it? I mean, I know to use the newly-created easy_install
script, but how do I make it install Django 1.0.7? If I do easy_install django
, it will install the latest version. I tried putting the version number 1.0.7
into this command in various ways, but nothing worked.
How do I do this?
Solution
There was never a Django 1.0.7. The 1.0 series only went up to 1.0.4. You can see all the releases in the tags section of the Django code repository.
However to answer your question, don't use easy_install
, use pip
. (If it's not already installed, do easy_install pip
, then never touch easy_install again). Now you can do:
pip install Django==1.0.4
Answered By - Daniel Roseman Answer Checked By - Candace Johnson (WPSolving Volunteer)