uv (python)

uv (python)

Warning

This post is more than a year old. Information may be outdated.

Python Tooling

UV is a venv wrapper.

  1. Create a venv at the local directory
uv venv
  1. Activate with
source .venv/bin/activate
  1. Install dependencies
uv pip install .
  1. For deactivating, run
pyenv deactivate
Backlinks (1)
cho.sh