git clone recipesite
$ python -m venv /path/to/new/virtual/environment
or
$ conda create -n envname
venv:
$ source <venv>/bin/activate
conda:
$ conda activate envname
$ pip install django, pillow
or
$ conda install django pillow
$ python manage.py makemigrations recipeapp
$ python manage.py migrate
$ python manage.py runserver