Skip to content

Getting Started

This guide provides information on how to install AQPXLIB.

Prerequisites

  • Python 3.10 or later.

Installation

aqpxlib is available on PyPI and can be installed either by using uv (recommended) or pip:

# install aqpxlib using uv
uv add aqpxlib

# install aqpxlib using pip
pip install aqpxlib

If you are using uv, you can run the following command to create a virtual environment and install aqpxlib into it:

# create a virtual environment
uv venv

To activate the virtual environment, run the following command depending on your platform:

$ source .venv/bin/activate
> .venv\Scripts\activate.bat
PS> .venv\Scripts\Activate.ps1

To install aqpxlib into the virtual environment, run the following command:

# install aqpxlib into the virtual environment
uv add aqpxlib