About cookies on this site Our websites require some cookies to function properly (required). In addition, other cookies may be used with your consent to analyze site usage, improve the user experience and for advertising. For more information, please review your options. By visiting our website, you agree to our processing of information as described in IBM’sprivacy statement. To provide a smooth navigation, your cookie preferences will be shared across the IBM web domains listed here.
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.providers.ibmq import IBMQ
import qiskit.tools.jupyter
%matplotlib inline
IBMQ.load_account()
%qiskit_backend_overview
Detailed information on a single backend
from qiskit.providers.ibmq 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
Qiskit copyright
import qiskit.tools.jupyter
%qiskit_copyright
Monospaced output
import qiskit.tools.jupyter
%monospaced_output
Was this page helpful?
Report a bug or request content on GitHub.