Installation de Django
#please check the python version
python -m pip install Django
Cloudy Chamois
#please check the python version
python -m pip install Django
pip install django
venv\Scripts\activate
django-admin startproject mysite
Working !!
If you are using window then first of all
create virtual environment
python -m venv venv
Then activate that environment
venv\Scripts\activate
Then install Django in that environment
pip install django
Then create django project named mysite
django-admin startproject mysite
python -m venv venv