Skip to content

Installation

Get Pythia up and running in minutes.

Requirements

  • Python: 3.8 or higher
  • Operating System: Linux, macOS, or Windows
  • Message Broker: Redis, Kafka, or RabbitMQ (optional for development)

Install from PyPI

pip install pythia-framework

Install from Source

For the latest development version:

git clone https://github.com/ralonso20/pythia.git
cd pythia
pip install -e .

Broker-Specific Dependencies

Choose your message broker and install the corresponding dependencies:

pip install pythia-framework[redis]
pip install pythia-framework[kafka]
pip install pythia-framework[rabbitmq]
pip install pythia-framework[all]

Quick Setup Test

Verify your installation:

import pythia
print(f"Pythia version: {pythia.__version__}")

Next Steps