Skip to content

TRXO Installation Guide

This guide describes how to install the TRXO CLI tool.

Prerequisites

  • Python 3.10 or higher
  • pip (Python package installer)
  • Access to a PingOne Advanced Identity Cloud tenant or PingAM instance.

Installation Methods

  1. Clone the repository:

    git clone https://github.com/Trevonix/trxo.git
    cd trxo
    

  2. Install the package:

    pip install -e .
    

Method 2: Development Setup

For contributors:

  1. Clone and enter directory:

    git clone https://github.com/Trevonix/trxo.git
    cd trxo
    

  2. Create virtual environment:

    python -m venv venv
    source venv/bin/activate  # Windows: venv\Scripts\activate
    

  3. Install with dev dependencies:

    pip install -e ".[dev]"
    

Verify Installation

Check that the CLI is accessible:

trxo --help