Project created with
$ python3 -m venv env
$ source env/bin/activate
$ django-admin startproject polls_project
$ python3 manage.py startapp polls
$ python3 manage.py migrate
To run,
$ python3 -m venv env
$ source env/bin/activate
$ pip3 install -r requirements.txt
$ python3 manage.py runserver