Skip to main content

Installation

caution

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

System requirements

  • Python: 3.13 or later
  • Operating system: macOS, Linux, or Windows with WSL
  • Network: Internet connection for authentication and AI services

Check your Python version

python --version
# or
python3 --version

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

Installation

Install with pip:

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

Verify installation

Confirm Seqera AI is installed correctly:

seqera --version

You should see output like:

seqera-ai 0.1.0

Check available commands:

seqera --help

Upgrading

pip install --upgrade seqera-ai

Uninstalling

pip uninstall seqera-ai

Troubleshooting

Command not found

If you see seqera: command not found after installation:

  1. Check PATH: Ensure the Python scripts directory is in your PATH

    # Restart your terminal or run
    source ~/.bashrc # or ~/.zshrc
  2. Verify installation location:

    pip show seqera-ai

Python version errors

If you see errors about Python version:

  1. Check you have Python 3.13+:

    python3 --version
  2. If using multiple Python versions, specify the correct one:

    python3.13 -m pip install seqera-ai

Permission errors

If you encounter permission errors during installation:

# Use --user flag with pip
pip install --user seqera-ai

Next steps

After installation:

  1. Authenticate with your Seqera Platform account
  2. Start the AI assistant