- Download Python and install on your pc.
- Create project folder sample Django01.
- Open console with type cd Django01.
- Create virtual environment with type python -m venv myvenv.
- Activate virtual environment with type myvenv\Scripts\activate.
- Install Django in virtual environment with project management PIP whith type pip3 install django.
- Create django project with type django-admin startproject mysite . Here I give django project name is mysite and don't forget adding dot in last command for create manage.py file.
- Run project with type python manage.py runserver . If you don't declare specific port system will set port default 8000.
- Browse site in browser with type url localhost:8000.
- Congrate! you are success create web site project with python/django.