13π
As stated on your error message, all compatible django versions are listed there. There is no 1.18 version for django.
The latest compatible django release will be installed if you type pip install django
.
If you want to install other version, make sure you have the correct version and use pip install django==1.x
EDIT: As stated by Peterino on a comment below, by running pip install django
youβre installing the latest compatible version and this may not be the latest one. To install the latest version you may be required to install/update Python to a newer release
7π
You try to install a version of Django that does not exists.
If you want the latest version :
pip install --upgrade django
You can find all versions available on pipy : https://pypi.python.org/pypi/Django
- Celery immediately exceeds memory on Heroku
- How do I redefine functions in python?
- Can you run a raw MySQL query in Django without a model?
- Adding static() to urlpatterns only work by appending to the list
- How to set default values in TabularInline formset in Django admin