Qamomile can be installed via standard package managers, such as pip.
pip install qamomileInstall optional integrations explicitly. For the Qiskit backend and circuit drawings used throughout the tutorials:
pip install "qamomile[qiskit,visualization]"from qamomile.qiskit import QiskitTranspiler, QiskitExecutorSupported 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 ARM64from qamomile.cudaq import CudaqTranspiler, CudaqExecutorpip install "qamomile[quri_parts]"from qamomile.quri_parts import QuriPartsTranspiler, QuriPartsExecutorRun Qiskit circuits on qBraid-supported devices and simulators.
pip install "qamomile[qbraid]"from qamomile.qbraid import QBraidExecutor