Online lab environments
In addition to downloading and installing Qiskit to work on your local machine, there are several options available for those who prefer to work in an online development environment.
Several providers offer online Jupyter environments with Qiskit preinstalled for fast and convenient onboarding. These recommended providers include the cloud service provider OVHcloud and the quantum software development cloud platform qBraid.
Additional online Jupyter notebook environments like IBM Watson® Studio, Google Colab, and Microsoft Azure Machine Learning Studio can be used to work with Qiskit by following the instructions below.
Recommended notebook environments with Qiskit preinstalled
OVHcloud AI notebooks
OVHcloud Public Cloud and OVHcloud Startup users can use their OVHcloud quantum notebooks to access Qiskit and submit jobs to IBM® QPUs with their IBM Quantum™ or IBM Cloud® account. To learn more, visit the OVHcloud Documentation and tutorials page.
OVHcloud AI notebooks are not available in some regions, such as the United States. Additionally, user interfaces might look different in different regions.
Follow these steps to get started:
- Create an IBM Quantum or IBM Cloud account.
- Set up an OVHcloud account.
- Create an OVH Public Cloud project.
- Follow the steps in Launch your first AI Notebook, selecting Qiskit for the framework.
qBraid Lab
Qiskit users can use qBraid’s preconfigured Python environments by following these instructions. For more information, see the qBraid Docs.
- Set up an qBraid free account.
- Create a Lab environment.
- Launch qBraid Lab, click the ENVS icon on the right, click + ADD at the top of the new sidebar, and search for Qiskit. Click the version you want to use, then click Install.
- Create a Jupyter notebook by clicking Python 3 [Qiskit] in the Notebook section.
- You can install any additional Python packages (Such as Qiskit v1.2) in a notebook cell by running
%pip install [package_name].
For more information, see the Pip (magic) commands topic.
Additional notebook environments for Qiskit users
For platforms without Qiskit preconfigured, the setup instructions are similar, except that you must install Qiskit manually. You will create an account, start a new project (or notebook or workspace, depending on the platform), and install Qiskit.
IBM Watson Studio
- Set up Watson Studio free trial.
- Create a Watson Studio Project.
- To install the Qiskit packages and dependencies needed, open a new notebook and run the following command:
!pip install qiskit qiskit-ibm-runtime pylatexenc !yes | pip uninstall simplejson
Google Colab
- Create a Google account.
- Go to the Google Colab landing page and sign in with your Google account.
- Create a Colab notebook and install Qiskit by running the following command:
%pip install qiskit qiskit-ibm-runtime
Microsoft Azure Machine Learning Studio
- Create an Azure account.
- Create a workspace.
- Create a Jupyter notebook in your workspace.
- From the notebook, run this command to install Qiskit:
%pip install qiskit qiskit-ibm-runtime