[Solved]-No matching distribution found for django

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

Leave a comment