New Car Assistant
Create and activate the project virtual environment (macOS / zsh):
-
Create the venv:
python3 -m venv .venv
-
Activate it:
source .venv/bin/activate
-
Install requirements (if needed):
pip install -r requirement.txt
Or run with the venv python without activating:
.venv/bin/python -m pip install -r requirement.txt
This project uses .venv/ at the repository root; .gitignore is updated to ignore it.