Create a virtual environment in the project directory:
$ python -m venv venv
Activate the virtual environment:
# For macOS/Linux
$ source ./venv/bin/activate
(venv) $
# For Windows
> ./venv/Scripts/activate
Install requirements:
(venv) $ pip install -r requirements.txt
Run the app:
(venv) $ streamlit run code/app.py