Python Installation

The Digital Employee Pipeline requires Python 3.12 (supports Python 3.11-3.12).

Installing Python

Linux/WSL

Ubuntu/Debian

sudo apt update
sudo apt install python3.12 python3.12-venv python3.12-dev

Fedora

sudo dnf install python3.12

macOS

Using Homebrew

brew install python@3.12

Windows

Verify Installation

After installing Python, verify the installation:

You should see output similar to:

Virtual Environment

It's recommended to use a virtual environment for Python development:

Next Steps

After installing Python, proceed to Package Manager to install uv for dependency management.

Last updated