Installing the toolkit for Qiskit

Quantum Rings SDK now offers a toolkit for seamless integration with Qiskit. To install, follow the procedure outlined below.

If you do not have Qiskit installed, you can install Qiskit by following the instructions outlined at https://docs.quantum.ibm.com/guides/install-qiskit.

Supported Qiskit version

Quantum Rings toolkit for Qiskit supports Qiskit version 1.3.1. Earlier versions are not supported. You can check your current installation by executing the following command:

import qiskit
print (qiskit.__version__)

If your Qiskit installation is not 1.3.1, follow the instructions in the link https://docs.quantum.ibm.com/guides/install-qiskit to uninstall older Qiskit versions and install version 1.3.1.

Installing the toolkit

Quantum Rings toolkit for Qiskit requires QuantumRingsLib version 0.9.0 or later. You can check your current installation using the following command.

import QuantumRingsLib
print (QuantumRingsLib.__version__)

If your version is not 0.9.0 or later, you can update QuantumRingsLib using the following command:

# for CPU only installation
pip install QuantumRingsLib --upgrade

# for GPU Enabled installation
pip install quantumrings-nvidia-gpu --upgrade

After getting the correct version of QuantumRingsLib installed, execute the following command:

pip install quantumrings-toolkit-qiskit

You should be good to get started!