Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

uv

install

# Arch
sudo pacman -S uv
# Windows 10
scoop install uv

usage

# Install a specific version
uv python list
uv python install 3.10
uv python pin 3.10
# Install a package
uv tool install <pkg>
# Create a virtual environment
uv venv .venv --python <version>
uv venv
# Arch
source .venv/Scripts/activate
deactivate
# Windows 10
.venv\Scripts\activate.bat
deactivate.bat