Skip to content

Installation

  • Python 3.10 or higher
  • pip or pipx
pip install rtmx

Or with pipx for isolated installation:

pipx install rtmx
rtmx --version

For contributing to RTMX:

git clone https://github.com/rtmx-ai/rtmx.git
cd rtmx
make dev # Install with dev dependencies
make test # Run tests
make lint # Run linter

RTMX has optional features that require additional packages:

# GitHub integration
pip install rtmx[github]
# Jira integration
pip install rtmx[jira]
# Web UI dashboard (rtmx serve)
pip install rtmx[web]
# Terminal UI (rtmx tui)
pip install rtmx[tui]
# Rich formatting for status output
pip install rtmx[rich]
# MCP server for AI agent integration
pip install rtmx[mcp]
# All optional dependencies
pip install rtmx[all]