uv-pip
April 19, 2026 ยท View on GitHub
Shim that routes pip to uv pip.
Install
uv pip install uv-pip
Use
pip install requests # runs `uv pip install requests`
pip list # runs `uv pip list`
How it works
uv-pip exposes a pip console script that execs into uv pip with the original arguments. Signals, stdio, and exit codes pass through unchanged.
Requires uv on PATH.
Gotchas
- If real
pipalready installed in the same environment, entry-point order decides which wins. Intended foruv venvwithout--seed. uv pipdoes not implement every flag of stock pip. Tools that parsepip --versionoutput may break.