[Fixed]-Could not find a version that satisfies the requirement django (from versions: ) No matching distribution found for django

16👍

Django above 2 version support only python3 , so try

pip3 install django==2.0.7

if you have python3.5 and above in your system

Also to see supported versions by pip try:

pip install django==0

and

pip3 install django==0

Leave a comment