Create a Python3 virtual environment, and activate it:
python3 -m venv <env_name>
source <env_name>/bin/activateThen, install dependencies:
pip3 install -r requirements.txtSetup a sqlite database:
$ cd src
$ python3 manage.py makemigrations recipemanager
$ python3 manage.py migrateAfter completing the installation, just run the application:
$ python3 manage.py runserverAccess the recipe manager at http://127.0.0.1:8000/manager/