Installation

The only pre-requisite to install R2X Core is Python 3.11 or greater.

Python version support

Python 3.11, 3.12, 3.13.

Installation options

R2X Core is available to install on PyPI and can be installed using any python package manager of your preference, but we recommend using uv.

Installation with uv

# Install as a tool
uv tool install r2x-core

# Or add to a project
uv add r2x-core

Installation with pip

# Install system-wide
pip install r2x-core

# Or in a virtual environment
python -m pip install r2x-core

Upgrading options

Upgrading with uv

uv pip install --upgrade r2x-core

Upgrading with pip

python -m pip install --upgrade r2x-core

Verify installation

Check that R2X Core is installed correctly:

import r2x_core
print(f"R2X Core version: {r2x_core.__version__}")

Next steps

See the how-to guides for practical usage examples or check out the API documentation for detailed reference information.