I tried it on virtualenv:
(venv) $ pip install Django==1.0.4
Downloading/unpacking Django==1.0.4
Could not find a version that satisfies the requirement Django==1.0.4 (from versions: )
No distributions matching the version for Django==1.0.4
Storing complete log in /home/tokibito/.pip/pip.log
Unfortunately, PyPI only has Django versions 1.1.4 and upwards. If you want the old version, you can just install directly from github:
pip install git+https://github.com/django/[email protected]
You could always point your requirement.txt directly at the version you want from the official Github repository. I've never done it this way, so I can't walk you through it, but it seems like a viable option if you need to run a specific version that's not on PyPI.
You can specify an alternative code source within your requirements.txt file.
#Django==1.0.4
git+https://github.com/django/[email protected]
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With