1Working !!
2If you are using window then first of all
3
4create virtual environment
5
6python -m venv venv
7Then activate that environment
8
9venv\Scripts\activate
10Then install Django in that environment
11
12pip install django
13Then create django project named mysite
14
15django-admin startproject mysite
16