Skip to article frontmatterSkip to article content
Site not loading correctly?

This may be due to an incorrect BASE_URL configuration. See the MyST Documentation for reference.

Installation

Qamomile can be installed via standard package managers, such as pip.

pip install qamomile

Install optional integrations explicitly. For the Qiskit backend and circuit drawings used throughout the tutorials:

pip install "qamomile[qiskit,visualization]"
from qamomile.qiskit import QiskitTranspiler, QiskitExecutor

Supported quantum SDKs

Qamomile supports multiple quantum SDK integrations. Install the optional dependencies for each SDK you use.

CUDA-Q
QURI Parts
qBraid

CUDA-Q is available on Linux and macOS ARM64 (Apple Silicon). Install the extra that matches your CUDA version:

pip install "qamomile[cudaq-cu12]"   # CUDA 12.x, Linux
pip install "qamomile[cudaq-cu13]"   # CUDA 13.x, Linux or macOS ARM64
from qamomile.cudaq import CudaqTranspiler, CudaqExecutor