ImageRotate / Agents.md
MichaelRKessler's picture
Sync from GitHub via hub-sync
a40762d verified
|
Raw
History Blame Contribute Delete
625 Bytes
# Python Environment
Always use `uv` to run Python scripts and manage dependencies β€” never use `pip` or `python` directly.
- Run scripts with `uv run python script.py` instead of `python script.py`
- Install packages with `uv add package-name` instead of `pip install`
- To run one-off commands: `uv run <command>`
- The project uses `uv` for virtual environment management; do not create venvs manually with `python -m venv`
## Common Commands
- `uv run python script.py` β€” run a script
- `uv add <package>` β€” add a dependency
- `uv sync` β€” install all dependencies from lockfile
- `uv run pytest` β€” run tests