Installation and login

You can install the Qiskit-QI plugin using pip. In case you want to install the plugin using Conda and want to access the Quantum Inspire API, refer to the section below.

pip install qiskit-quantuminspire

For access to the Quantum Inspire API you can use the QI tool. Once installed (see repository for installation instructions), simply run the shell command below to log in to the production environment.

qi login

Installation in Conda

You can easily create a Conda environment that automatically comes with quantuminspire and qiskit-quantuminspire installed by using an environment.yml file.

Check you Conda version with conda --version, then run the appropriate command:

Conda >= 26.3:

conda create --file https://conda.quantum-inspire.com/qiskit.yml

Conda < 26.3:

conda env create --file https://conda.quantum-inspire.com/qiskit.yml

By default, the environment that will be created will be named qiskit-qi; use the -n/--name <CUSTOM-ENV-NAME> option to overwrite this.

After creating the environment, you need to activate it (use your custom environment name if you have defined it):

conda activate qiskit-qi

Note: Note that due to dependency conflicts, an older version of the plugin might be installed. You can check the version using pip show qiskit-quantuminspire from the Conda environment.