Skip to main contentIBM Quantum Documentation
This page is from an old version of Qiskit SDK and does not exist in the latest version. We recommend you migrate to the latest version. See the release notes for more information.
Important

IBM Quantum Platform is moving and this version will be sunset on July 1. To get started on the new platform, read the migration guide.

Jupyter Tools

qiskit.tools.jupyter

A Collection of Jupyter magic functions and tools that extend the functionality of Qiskit.


Overview of all available backends

from qiskit import IBMQ
import qiskit.tools.jupyter
%matplotlib inline
 
IBMQ.load_account()
 
%qiskit_backend_overview

Detailed information on a single backend

from qiskit import IBMQ
import qiskit.tools.jupyter
%matplotlib inline
 
IBMQ.load_account()
provider = IBMQ.get_provider(hub='ibm-q')
backend = provider.get_backend('ibmq_vigo')
backend

Load Qiskit Job Watcher

import qiskit.tools.jupyter
%qiskit_job_watcher

HTMLProgressBar

import numpy as np
from qiskit.tools.parallel import parallel_map
import qiskit.tools.jupyter
 
%qiskit_progress_bar
parallel_map(np.sin, np.linspace(0,10,100));

Qiskit version table

import qiskit.tools.jupyter
%qiskit_version_table

Version Information

Qiskit SoftwareVersion
Qiskit0.26.2
Terra0.17.4
Aer0.8.2
Ignis0.6.0
Aqua0.9.1
IBM Q Provider0.13.1
System information
Python3.7.7 (default, Apr 22 2020, 19:15:10) [GCC 9.3.0]
OSLinux
CPUs32
Memory (Gb)125.71903228759766
Tue May 25 16:56:58 2021 EDT

import qiskit.tools.jupyter
%qiskit_copyright

This code is a part of Qiskit

© Copyright IBM 2017, 2021.

This code is licensed under the Apache License, Version 2.0. You mayobtain a copy of this license in the LICENSE.txt file in the root directoryof this source tree or at http://www.apache.org/licenses/LICENSE-2.0.

Any modifications or derivative works of this code must retain thiscopyright notice, and modified files need to carry a notice indicatingthat they have been altered from the originals.


Monospaced output

import qiskit.tools.jupyter
%monospaced_output
Was this page helpful?
Report a bug or request content on GitHub.