# add python dependency
uv add {package_name}
# add python dependency for develop (e.g., black, isort, ruff)
uv add --dev {package_name}
# remove python dependency
uv remove {package_name}
# sync existing python project
uv sync
# sync existing python project without updating uv.lock
uv sync --frozen
# run python or runnable package
uv run python
uv run uvicorn api:app --port 5000
uv run jupyter lab
# uv run package without installation
uv run --with jupyterlab jupyter lab
# activate venv
source .venv/bin/activate
# deactivate venv
deactivate