On Linux:
$ python3.6 -m venv venv $ . venv/bin/activate
On Windows:
> python -m venv venv > venv/Scripts/activate
(venv)$ pip install -r requirements.txt
(venv)$ cd myproject (venv)$ python manage.py migrate
(venv)$ python manage.py createsuperuser
(venv)$ cd myproject (venv)$ python manage.py runserver