How to start this project:

clone the git repository.

open the folder in a new terminal.

create a new python virutal environment with venv:

  • windows: 'python -m venv .venv'
  • linux: 'python3 -m venv .venv'

activate your venv:

  • windows: '.\.venv\scripts\activate'
  • linux: 'source .\.venv\bin\activate

install dependencies:

  • run: 'pip install -r requirements.txt'

start streamlit server:

  • run: 'streamlit run main.py'