Loading...
Loading...
Guidelines for Python dependency management using uv, the fast Python package installer and resolver.
npx skill4agent add mindrally/skills python-uvuvpippip-toolspoetryuv add <package>
uv remove <package>
uv syncuv run script.py# /// script
# requires-python = ">=3.12"
# dependencies = [
# "torch",
# "torchvision",
# "opencv-python",
# "numpy",
# "matplotlib",
# "Pillow",
# "timm",
# ]
# ///
print("some python code")uv add package-name --script script.py
uv remove package-name --script script.py
uv sync --script script.pyuvuv run