KMHFL Backend Setup Create Python Virtual Environment python3 -m venv [name_of_venv] or virtualenv --python python3 [name_of_venv] Activate Virtual Env $ source [name_of_env]/bin/activate Install dependencies $ pip install -r requirements.txt Start Dev Server $ python manage.py runserver