Skip to content

Installation

This page will help you install and set up Payman in your Python project in just a few steps.


Requirements

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

Check your Python version:

python --version

Installing via pip

The easiest way to install Payman is via PyPI:

pip install payman

Or, if you want the latest development version, install directly from GitHub:

pip install git+https://github.com/irvaniamirali/payman.git

(Optional) Using a Virtual Environment

It's recommended to use a virtual environment to keep dependencies isolated:

python -m venv .venv
source .venv/bin/activate  # On Linux/macOS
.venv\Scripts\activate     # On Windows