Skip to content

Instantly share code, notes, and snippets.

@worldofgeese
Last active August 21, 2024 05:46
Show Gist options
  • Save worldofgeese/8323943f87eef85518831825926c8526 to your computer and use it in GitHub Desktop.
Save worldofgeese/8323943f87eef85518831825926c8526 to your computer and use it in GitHub Desktop.
Quickly get up and running with Python package manager, uv
powershell -c "irm https://astral.sh/uv/install.ps1 | iex"
'python-preference = "managed"' | Set-Content -Path $env:APPDATA\uv\uv.toml
uv venv
.venv\Scripts\activate
uv pip install git-filter-repo
curl -LsSf https://astral.sh/uv/install.sh | sh
echo 'python-preference = "managed"' > "$HOME/.config/uv/uv.toml"
uv venv
source .venv/bin/activate
uv pip install git-filter-repo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment