Skip to content

uv & Git Setup Guide

Pbatch edited this page Jun 13, 2026 · 2 revisions

Wiki: Setup uv & Git


Step 1: Install uv

uv is a standalone executable that manages your Python versions and environments automatically.

  1. Install uv:

    • macOS / Linux:
      curl -LsSf [https://astral.sh/uv/install.sh](https://astral.sh/uv/install.sh) | sh
    • Windows (PowerShell):
      powershell -ExecutionPolicy ByPass -c "irm [https://astral.sh/uv/install.ps1](https://astral.sh/uv/install.ps1) | iex"
  2. Restart your terminal to ensure the uv command is available in your PATH.


Step 2: Install Git

For automatic updates, we use Git

  1. Download Git:
    • Access Git Downloads and choose the version for your operating system.
  2. Installation:
    • Follow the on-screen prompts to complete the installation.

Verification

These commands confirm that your tools are correctly configured and ready for development.

Tool Verification Command
uv uv --version
Git git --version

Clone this wiki locally