Skip to main content

Installation

Seqera AI CLI is in beta

Seqera AI CLI is currently in beta. Features and commands may change as we continue to improve the product.

note

Seqera Cloud users receive $20 in free credits to get started with Seqera AI. Contact us for additional credits.

Requirements

  • Python 3.13 or later
  • macOS, Linux, or Windows with WSL
  • A Seqera Platform account (sign up for free)
  • An internet connection

Python Package Index

The Seqera AI CLI is distributed as a Python package through PyPI, making installation simple and straightforward using standard Python tools.

Install

To install Seqera AI CLI from Python Package Index (PyPI):

  1. Check your Python version:

    python --version
    # or
    python3 --version

    If you need to install or upgrade Python, see python.org or use your system's package manager.

  2. Install Seqera AI CLI:

    pip install seqera-ai
    tip

    Consider using a virtual environment to avoid conflicts with other Python packages:

    python -m venv seqera-env
    source seqera-env/bin/activate # On Windows: seqera-env\Scripts\activate
    pip install seqera-ai
  3. Verify your installation:

    seqera --version

    You will see output similar to:

    seqera-ai 0.1.0

Upgrade

To upgrade your version of Seqera AI CLI, run:

pip install --upgrade seqera-ai

Uninstall

To uninstall your version of Seqera AI CLI, run:

pip uninstall seqera-ai

Learn more