1👍
✅
It appears that version (1.5.6) of pip
does not recognize the compatible release specifier ~=
.
You can try the following version specifications which are equivalent to ~=1.9.0
:
pip install django>=1.9.0
Or:
pip install django==1.9.*
In any case, you may also want to upgrade to the latest version of pip
using:
pip install --upgrade pip
0👍
Do away with -r
unless you are reading from a file. Use:
C:/Python34/python -m pip install django~=1.9.0
- Cast Django's intcomma string to Decimal
- Deploying a React app on Heroku
- How to pass a view function with arguments in a decorator to another decorator in django
- Password_reset() got an unexpected keyword argument 'post_change_redirect'
Source:stackexchange.com