Skip to content

Installation

This guide will help you install Opteryx on your system.

Prerequisites

Before installing Opteryx, ensure you have:

  • Python 3.8 or higher
  • pip (Python package installer)

Installation Methods

Install via pip

The easiest way to install Opteryx is using pip:

pip install opteryx

Install from Source

To install the latest development version from source:

git clone https://github.com/mabel-dev/opteryx.git
cd opteryx
pip install -e .

Verify Installation

After installation, verify that Opteryx is installed correctly:

import opteryx
print(opteryx.__version__)

Next Steps

Once you have Opteryx installed, proceed to the Quick Start Guide to learn how to use it.