This guide explains how the environment was created and how team members can reproduce it.
These steps were done once by the team member responsible for setting up the project environment.
git clone https://github.com/MatSouesme/IntroLLMOps.git cd IntroLLMOps
pip install uv
uv init
uv python install 3.11.6 uv venv --python 3.11.6 uv sync
uv add google-cloud-aiplatform google-cloud-bigquery google-cloud-storage
echo ".venv/" >> .gitignore echo ".env" >> .gitignore
git add pyproject.toml uv.lock .gitignore README.md git commit -m "Setup: Python 3.11.6 + GCP libs" git push origin main
git clone https://github.com/MatSouesme/IntroLLMOps.git
cd IntroLLMOps
uv sync