```bash python3 -V python3 -m venv venv . venv/bin/activate # deactivate - выключить вирт окружение pip install --upgrade pip pip install django django-admin startproject coolsite cd coolsite python3 manage.py runserver # CTRL_C python3 manage.py startapp women ``` ```python # coolsite/settings.py 'women.apps.WomenConfig' # women/views.py from django.http import HttpResponse def index(Request): #HttpRequest return HttpResponse("Страница приложения women.") # coolsite/urls.py from coolsite.women.views import index path('women/', index), ```