This repository contains the main Streamlit app in src/streamlit_app.py.
# All platforms (macOS/Linux/Windows)
cd "/path-to-the-project-root/Team-Route"# macOS/Linux:
python3 -m venv .venv
# Windows:
python -m venv .venv# macOS/Linux:
source .venv/bin/activate
# Windows:
.venv\Scripts\activate# macOS/Linux:
which python
# Windows:
where python
# Both platforms:
python -V# Both platforms (macOS/Linux/Windows):
python -m pip install --upgrade pip
python -m pip install streamlit pandas numpy joblib plotly scikit-learn# Both platforms (macOS/Linux/Windows):
streamlit run src/streamlit_app.py