Skip to content

Installation

Requirements

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

Basic Installation

To install the Upassist Python SDK, use pip:

pip install upassist

Development Installation

If you want to contribute to the SDK or build the documentation locally, install with development dependencies:

pip install upassist[docs]

This will install additional packages required for: - Building documentation - Running tests - Development tools

Verifying Installation

You can verify the installation by running Python and importing the package:

import upassist
print(upassist.__version__)

Upgrading

To upgrade to the latest version:

pip install --upgrade upassist

Uninstalling

To uninstall the package:

pip uninstall upassist