install gitpython downloadpython 3.11
Install Git & Python
Required before the Windows native install. Docker users only need Git to clone.
Windows
Git
- Download from git-scm.com/download/win
- Run the installer — defaults are fine
- On “Adjusting your PATH”, keep Git from the command line and also from 3rd-party software selected
terminal
git --versionPython 3.11+
- Download from python.org/downloads/windows (3.11 or newer)
- Run the installer — check Add python.exe to PATH at the bottom of the first screen
- Finish install, open a new PowerShell window, then verify:
terminal
python --version
py -3.11 --versionEither command should show 3.11+. If only py works, use py -3.11 in the Windows install guide.
macOS
Git
Option A — Xcode Command Line Tools:
terminal
xcode-select --installOption B — Homebrew: brew install git
terminal
git --versionPython 3.11+
Homebrew (recommended for native install):
terminal
brew install python@3.11
python3 --versionNative Mac install guide: /install/mac
Linux
Git
terminal
# Debian / Ubuntu
sudo apt update && sudo apt install -y git
# Fedora
sudo dnf install -y git
git --versionPython 3.11+
terminal
# Debian / Ubuntu
sudo apt install -y python3.11 python3.11-venv python3-pip
# Fedora
sudo dnf install -y python3.11
python3 --versionDocker is the recommended Linux path — see /install/docker.
Verify both
Ready to continue? Both commands should work:
terminal
git --version
python --versionOr copy: git clone https://github.com/pewdiepie-archdaemon/odysseus.git && cd odysseus
FAQ