Spaces:
Running
Running
Project Instructions
Python Environment
- Always use
uvto run Python scripts and manage dependencies — never usepiporpythondirectly - Run scripts with
uv run python script.pyinstead ofpython script.py - Install packages with
uv add package-nameinstead ofpip install - To run one-off commands:
uv run <command> - The project uses
uvfor virtual environment management; do not create venvs manually withpython -m venv
Common Commands
uv run python script.py— run a scriptuv add <package>— add a dependencyuv sync— install all dependencies from lockfileuv run pytest— run tests