This repository contains utility functions and demonstration notebooks that supplement the Quantum Inspire 2.0 Python SDK, tailored for the superconducting backends of the platform, hosted in the DiCarlo lab in QuTech.
It is primarily intended for researchers, students, and developers who use Quantum Inspire’s superconducting backends and want reusable utilities and worked examples beyond the core SDK.
Useful links relating to our superconducting backends:
- Tuna Backends Operational Specifics
- Backend Performance Dashboards [live updates]
- Join our Slack community!
Note: this installation method is typically not recommended, but is nevertheless suggested due to its relative simplicity. In principle it avoids installing and using pipx, which some users have experienced difficulties in doing so.
- Install Anaconda or Miniconda (lightweight version of Anaconda) in your computer
- Open Anaconda Prompt (or Terminal in UNIX)
- Run the following commands
- conda create -n quantuminspire python=3.12 (creates a new conda environment)
- conda activate quantuminspire (activates the environment)
- pip install quantuminspire
- pip install qi-utilities (installs this repository)
- pip install jupyterlab
- pip install notebook
Installing quantuminspire within the conda environment restricts the command 'qi login' to be recognized and used only within the created environment.
- Install pipx (used when installing quantuminspire package)
- Install quantuminspire repository (used for login)
- Install Anaconda or Miniconda (lightweight version of Anaconda) in your computer
- Open Anaconda Prompt (or Terminal in UNIX)
- Run the following commands
- conda create -n quantuminspire python=3.12 (creates a new conda environment)
- conda activate quantuminspire (activates the environment)
- pip install qi-utilities (installs this repository)
- pip install jupyterlab
- pip install notebook
Note: in order to run the method backend.coupling_map.draw(), you will need to install Graphviz in your computer. Make sure during installation to add Graphviz to the system PATH, so that your Python environment can recognize it.
In order to use the Jupyter notebook guides which include from simple example code up to advanced demonstrations, you will need to clone this repository. First, you will need a GitHub account to be able to pull the project.
For new users, we recommend downloading GitHub Desktop, and then cloning the repository by using the link https://github.com/DiCarloLab-Delft/QuantumInspireUtilities.git.
After creating a working Python environment (see instructions above) and having cloned the repository, you should be able to use the notebooks.
In order to create your first quantum circuit using the Quantum Inspire SDK, visit https://qutech-delft.github.io/qiskit-quantuminspire/getting_started/submitting.html.
[2026-01-20] Current list of targeted upcoming new features:
- Create utility functions and a demonstration notebook guide on variational quantum algorithms.