Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 3 additions & 16 deletions docs/guides/install-qiskit.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -112,22 +112,9 @@ Whether you will work locally or in a cloud environment, the first step for all
pip install qiskit-ibm-runtime
```

If you intend to use visualization functionality or Jupyter notebooks, it is recommended to install Qiskit with the extra visualization support (`'qiskit[visualization]'`).

<Tabs>
<TabItem value="default" label="Default">

```shell
pip install qiskit[visualization]
```
</TabItem>

<TabItem value="zsh" label="zsh">
```shell
pip install 'qiskit[visualization]'
```
</TabItem>
</Tabs>
<Admonition type="tip" title="Add visualization support">
If you intend to use visualization functionality or Jupyter notebooks, also install the `qiskit.visualization` module. See the [Visualizations API reference](/docs/api/qiskit/visualization) for more information.
</Admonition>

<span id="local-jupyter"></span>
1. If you want to run a Jupyter notebook with the Qiskit packages you just installed, you need to install Jupyter in your environment.
Expand Down
2 changes: 1 addition & 1 deletion docs/guides/interoperate-qiskit-qasm2.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@
"If you specify which gate classes to use for `gate` statements outside of `\"qelib1.inc\"`, the resulting circuit will typically be more efficient to work with.\n",
"\n",
"<Admonition type=\"warning\">\n",
"As of Qiskit SDK 1.0, Qiskit's OpenQASM 2 *exporter* (see [Export a Qiskit circuit to OpenQASM 2](#qasm2-export)) still behaves as if `\"qelib1.inc\"` has more gates than it really does.\n",
"As of Qiskit SDK v1.0, Qiskit's OpenQASM 2 *exporter* (see [Export a Qiskit circuit to OpenQASM 2](#qasm2-export)) still behaves as if `\"qelib1.inc\"` has more gates than it really does.\n",
"This means that the default settings of the importer might not be able to import a program exported by our importer.\n",
"See [the specific example on working with the legacy exporter](#qasm2-import-legacy) to resolve this problem.\n",
"\n",
Expand Down
11 changes: 4 additions & 7 deletions docs/guides/quick-start.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -116,14 +116,11 @@
"\n",
"## 1. Install Qiskit\n",
"\n",
"Run the following command in your terminal to install the Qiskit and Matplotlib packages, as well as the Qiskit visualization module.\n",
"Install the following with your preferred package manager (such as `pip`):\n",
"\n",
"```shell\n",
"pip install qiskit matplotlib qiskit[visualization]\n",
"\n",
"# On a zsh terminal, use this line instead:\n",
"# pip install qiskit matplotlib 'qiskit[visualization]'\n",
"```"
"- [`qiskit`](/docs/guides/install-qiskit)\n",
"- [`matplotlib`](https://matplotlib.org/stable/users/explain/quick_start.html)\n",
"- [`qiskit[visualization]`](/docs/api/qiskit/visualization)"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion docs/guides/run-jobs-batch.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@
"metadata": {},
"source": [
"<Admonition type=\"caution\">\n",
" If you set `backend=backend` in a primitive, the program is run in job mode, even if it's inside a batch or session context. Setting `backend=backend` is deprecated as of Qiskit Runtime 0.24.0. Instead, use the `mode` parameter.\n",
" If you set `backend=backend` in a primitive, the program is run in job mode, even if it's inside a batch or session context. Setting `backend=backend` is deprecated as of Qiskit Runtime v0.24.0. Instead, use the `mode` parameter.\n",
"</Admonition>\n",
"\n",
"## Next steps\n",
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/advanced-techniques-for-qaoa.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"\n",
"Before starting this tutorial, be sure you have the following installed:\n",
"\n",
"* Qiskit SDK v2.0 or later, with visualization support ( `pip install 'qiskit[visualization]'` )\n",
"* Qiskit SDK v2.0 or later, with [visualization](/docs/api/qiskit/visualization) support\n",
"* Qiskit Runtime v0.43 or later (`pip install qiskit-ibm-runtime`)\n",
"* Rustworkx graph library (`pip install rustworkx`)\n",
"* Python SAT (`pip install python-sat`)"
Expand Down
4 changes: 2 additions & 2 deletions docs/tutorials/ai-transpiler-introduction.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@
"\n",
"Before starting this tutorial, ensure that you have the following installed:\n",
"\n",
"* Qiskit SDK v1.0 or later, with visualization support (`pip install 'qiskit[visualization]'`)\n",
"* Qiskit Runtime (`pip install qiskit-ibm-runtime`) 0.22 or later\n",
"* Qiskit SDK v1.0 or later, with [visualization](/docs/api/qiskit/visualization) support\n",
"* Qiskit Runtime (`pip install qiskit-ibm-runtime`) v0.22 or later\n",
"* Qiskit IBM&reg; Transpiler with AI local mode(`pip install 'qiskit-ibm-transpiler[ai-local-mode]'`)"
]
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"\n",
"Before starting this tutorial, ensure that you have the following installed:\n",
"\n",
"* Qiskit SDK v1.0 or later, with visualization support (`pip install 'qiskit[visualization]'`)\n",
"* Qiskit SDK v1.0 or later, with [visualization](/docs/api/qiskit/visualization) support\n",
"* Qiskit Runtime v0.22 or later (`pip install qiskit-ibm-runtime`)\n",
"* AQC-Tensor Qiskit addon (`pip install 'qiskit-addon-aqc-tensor[aer,quimb-jax]'`)"
]
Expand Down
5 changes: 2 additions & 3 deletions docs/tutorials/chsh-inequality.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,8 @@
"\n",
"Before starting this tutorial, ensure that you have the following installed:\n",
"\n",
"* Qiskit SDK 1.0 or later\n",
"* Qiskit Runtime (`pip install qiskit-ibm-runtime`) 0.22 or later\n",
"* Visualization support (`'qiskit[visualization]'`)"
"* Qiskit SDK v1.0 or later, with [visualization](/docs/api/qiskit/visualization) support\n",
"* Qiskit Runtime (`pip install qiskit-ibm-runtime`) v0.22 or later"
]
},
{
Expand Down
4 changes: 2 additions & 2 deletions docs/tutorials/circuit-transpilation-settings.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@
"\n",
"Before starting this tutorial, ensure that you have the following installed:\n",
"\n",
"* Qiskit SDK 1.2 or later, with visualization support (`pip install 'qiskit[visualization]'`)\n",
"* Qiskit Runtime 0.28 or later (`pip install qiskit-ibm-runtime`)"
"* Qiskit SDK v1.2 or later, with [visualization](/docs/api/qiskit/visualization) support\n",
"* Qiskit Runtime v0.28 or later (`pip install qiskit-ibm-runtime`)"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/combine-error-mitigation-techniques.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"\n",
"Before starting this tutorial, ensure that you have the following installed:\n",
"\n",
"- Qiskit SDK v2.1 or later with visualization support (`pip install 'qiskit[visualization]'`)\n",
"- Qiskit SDK v2.1 or later, with [visualization](/docs/api/qiskit/visualization) support\n",
"- Qiskit Runtime v0.40 or later (`pip install qiskit-ibm-runtime`)"
]
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
"## Requirements\n",
"\n",
"Before starting this tutorial, be sure you have the following installed:\n",
"- Qiskit SDK v1.3 or later ( `pip install 'qiskit[visualization]'` )\n",
"- Qiskit SDK v1.3 or later, with [visualization](/docs/api/qiskit/visualization) support\n",
"- Qiskit Runtime v0.28 or later (`pip install qiskit-ibm-runtime`)\n",
"- Qiskit IBM Transpiler (`pip install qiskit-ibm-transpiler`)\n",
"- Qiskit AI Transpiler local mode (`pip install qiskit_ibm_ai_local_transpiler`)\n",
Expand Down
6 changes: 3 additions & 3 deletions docs/tutorials/depth-reduction-with-circuit-cutting.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@
"## Requirements\n",
"\n",
"Before starting this tutorial, be sure you have the following installed:\n",
"- Qiskit SDK v1.0 or later, with visualization support ( `pip install 'qiskit[visualization]'` )\n",
"- Qiskit Runtime 0.22 or later (`pip install qiskit-ibm-runtime`)\n",
"- Circuit cutting Qiskit addon 0.9.0 or later (`pip install qiskit-addon-cutting`)"
"- Qiskit SDK v2.0 or later, with [visualization](/docs/api/qiskit/visualization) support\n",
"- Qiskit Runtime v0.22 or later (`pip install qiskit-ibm-runtime`)\n",
"- Circuit cutting Qiskit addon v0.9.0 or later (`pip install qiskit-addon-cutting`)"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/edc-cut-bell-pair-benchmarking.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
"\n",
"Before starting this tutorial, ensure that you have the following installed:\n",
"\n",
"* Qiskit SDK v2.0 or later, with visualization support (`pip install 'qiskit[visualization]'`)\n",
"* Qiskit SDK v2.0 or later, with [visualization](/docs/api/qiskit/visualization) support\n",
"* Qiskit Runtime v0.40 or later (`pip install qiskit-ibm-runtime`)"
]
},
Expand Down
8 changes: 4 additions & 4 deletions docs/tutorials/error-mitigation-with-qiskit-functions.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@
"\n",
"Before starting this tutorial, be sure you have the following installed:\n",
"\n",
"- Qiskit SDK 1.2 or later (`pip install qiskit`)\n",
"- Qiskit Runtime 0.28 or later (`pip install qiskit-ibm-runtime`)\n",
"- IBM Qiskit Functions Catalog client 0.0.0 or later (`pip install qiskit-ibm-catalog`)\n",
"- Qiskit Aer 0.15.0 or later (`pip install qiskit-aer`)"
"- Qiskit SDK v1.2 or later (`pip install qiskit`)\n",
"- Qiskit Runtime v0.28 or later (`pip install qiskit-ibm-runtime`)\n",
"- IBM Qiskit Functions Catalog client v0.0.0 or later (`pip install qiskit-ibm-catalog`)\n",
"- Qiskit Aer v0.15.0 or later (`pip install qiskit-aer`)"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/fractional-gates.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@
"### Requirements\n",
"\n",
"Before starting this tutorial, be sure you have the following installed:\n",
"- Qiskit SDK v2.0 or later ( `pip install 'qiskit[visualization]'`)\n",
"- Qiskit SDK v2.0 or later, with [visualization](/docs/api/qiskit/visualization) support\n",
"- Qiskit Runtime v0.37 or later (`pip install qiskit-ibm-runtime`)\n",
"- Qiskit Basis Constructor (`pip install qiskit_basis_constructor`)"
]
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/ghz-spacetime-codes.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"### Requirements\n",
"Before starting this tutorial, ensure that you have the following installed:\n",
"\n",
"- Qiskit SDK v2.0 or later with visualization support (`pip install 'qiskit[visualization]'`)\n",
"- Qiskit SDK v2.0 or later, with [visualization](/docs/api/qiskit/visualization) support\n",
"- Qiskit Runtime v0.40 or later (`pip install qiskit-ibm-runtime`)\n",
"- Qiskit Aer v0.17.2 (`pip install qiskit-aer`)\n",
"- [Qiskit Device Benchmarking](https://github.com/qiskit-community/qiskit-device-benchmarking) (`pip install \"qiskit-device-benchmarking @ git+https://github.com/qiskit-community/qiskit-device-benchmarking.git\"`)\n",
Expand Down
4 changes: 2 additions & 2 deletions docs/tutorials/grovers-algorithm.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@
"\n",
"Before starting this tutorial, ensure that you have the following installed:\n",
"\n",
"* Qiskit SDK 1.4 or later, with visualization support (`pip install 'qiskit[visualization]'`)\n",
"* Qiskit Runtime (`pip install qiskit-ibm-runtime`) 0.36 or later"
"* Qiskit SDK v1.4 or later, with [visualization](/docs/api/qiskit/visualization) support\n",
"* Qiskit Runtime (`pip install qiskit-ibm-runtime`) v0.36 or later"
]
},
{
Expand Down
4 changes: 2 additions & 2 deletions docs/tutorials/krylov-quantum-diagonalization.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@
"## Requirements\n",
"Before starting this tutorial, be sure you have the following installed:\n",
"\n",
"- Qiskit SDK v2.0 or later, with visualization support ( `pip install 'qiskit[visualization]'` )\n",
"- Qiskit Runtime 0.22 or later ( `pip install qiskit-ibm-runtime` )"
"- Qiskit SDK v2.0 or later, with [visualization](/docs/api/qiskit/visualization) support\n",
"- Qiskit Runtime v0.22 or later ( `pip install qiskit-ibm-runtime` )"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/long-range-entanglement.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"\n",
"Before starting this tutorial, ensure that you have the following installed:\n",
"\n",
"- Qiskit SDK v2.0 or later, with visualization support ( `pip install 'qiskit[visualization]'` )\n",
"- Qiskit SDK v2.0 or later, with [visualization](/docs/api/qiskit/visualization) support\n",
"- Qiskit Runtime ( `pip install qiskit-ibm-runtime` ) v0.37 or later"
]
},
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/multi-product-formula.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
"\n",
"Before starting this tutorial, ensure that you have the following installed:\n",
"\n",
"* Qiskit SDK v1.0 or later, with visualization support (`pip install 'qiskit[visualization]'`)\n",
"* Qiskit SDK v1.0 or later, with [visualization](/docs/api/qiskit/visualization) support\n",
"* Qiskit Runtime v0.22 or later (`pip install qiskit-ibm-runtime`)\n",
"* MPF Qiskit addons (`pip install qiskit_addon_mpf`)\n",
"* Qiskit addons utils (`pip install qiskit_addon_utils`)\n",
Expand Down
4 changes: 2 additions & 2 deletions docs/tutorials/nishimori-phase-transition.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
"## Requirements\n",
"Before starting this tutorial, be sure you have the following installed:\n",
"\n",
"- Qiskit SDK v1.0 or later, with visualization support ( `pip install 'qiskit[visualization]'` )\n",
"- Qiskit Runtime 0.22 or later ( `pip install qiskit-ibm-runtime` )\n",
"- Qiskit SDK v1.0 or later, with [visualization](/docs/api/qiskit/visualization) support\n",
"- Qiskit Runtime v0.22 or later ( `pip install qiskit-ibm-runtime` )\n",
"- GEM Suite ( `pip install gem-suite` )"
]
},
Expand Down
4 changes: 2 additions & 2 deletions docs/tutorials/operator-back-propagation.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@
"\n",
"Before starting this tutorial, be sure you have the following installed:\n",
"\n",
"- Qiskit SDK 1.2 or later (`pip install qiskit`)\n",
"- Qiskit Runtime 0.28 or later (`pip install qiskit-ibm-runtime`)\n",
"- Qiskit SDK v1.2 or later (`pip install qiskit`)\n",
"- Qiskit Runtime v0.28 or later (`pip install qiskit-ibm-runtime`)\n",
"- OBP Qiskit addon (`pip install qiskit-addon-obp`)\n",
"- Qiskit addon utils (`pip install qiskit-addon-utils`)"
]
Expand Down
4 changes: 2 additions & 2 deletions docs/tutorials/pauli-correlation-encoding-for-qaoa.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@
"## Requirements\n",
"\n",
"Before starting this tutorial, be sure you have the following installed:\n",
"- Qiskit SDK v1.0 or later, with visualization support ( `pip install 'qiskit[visualization]'` )\n",
"- Qiskit Runtime 0.22 or later (`pip install qiskit-ibm-runtime`)"
"- Qiskit SDK v1.0 or later, with [visualization](/docs/api/qiskit/visualization) support\n",
"- Qiskit Runtime v0.22 or later (`pip install qiskit-ibm-runtime`)"
]
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@
"\n",
"Before starting this tutorial, be sure you have the following installed:\n",
"\n",
"- Qiskit SDK 1.2 or later (`pip install qiskit`)\n",
"- Qiskit Runtime 0.3 or later (`pip install qiskit-ibm-runtime`)\n",
"- Circuit cutting Qiskit addon 0.9.0 or later (`pip install qiskit-addon-cutting`)"
"- Qiskit SDK v1.2 or later (`pip install qiskit`)\n",
"- Qiskit Runtime v0.3 or later (`pip install qiskit-ibm-runtime`)\n",
"- Circuit cutting Qiskit addon v.9.0 or later (`pip install qiskit-addon-cutting`)"
]
},
{
Expand Down
4 changes: 2 additions & 2 deletions docs/tutorials/probabilistic-error-amplification.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -151,8 +151,8 @@
"\n",
"Before starting this tutorial, ensure that you have the following installed:\n",
"\n",
"- Qiskit SDK 1.0 or later with Visualization support (`pip install 'qiskit[visualization]'`)\n",
"- Qiskit Runtime 0.22 or later (`pip install qiskit-ibm-runtime`)"
"- Qiskit SDK v1.0 or later, with [visualization](/docs/api/qiskit/visualization) support\n",
"- Qiskit Runtime v0.22 or later (`pip install qiskit-ibm-runtime`)"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/projected-quantum-kernels.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"### Requirements\n",
"Before starting this tutorial, ensure that you have the following installed:\n",
"\n",
"- Qiskit SDK v2.0 or later with visualization support (`pip install 'qiskit[visualization]'`)\n",
"- Qiskit SDK v2.0 or later, with [visualization](/docs/api/qiskit/visualization) support\n",
"- Qiskit Runtime v0.40 or later (`pip install qiskit-ibm-runtime`)\n",
"- Category encoders 2.8.1 (`pip install category-encoders`)\n",
"- NumPy 2.3.2 (`pip install numpy`)\n",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@
"## Requirements\n",
"\n",
"Before starting this tutorial, be sure you have the following installed:\n",
"- Qiskit SDK v1.0 or later, with visualization support ( `pip install 'qiskit[visualization]'` )\n",
"- Qiskit Runtime 0.22 or later (`pip install qiskit-ibm-runtime`)\n",
"- Qiskit SDK v1.0 or later, with [visualization](/docs/api/qiskit/visualization) support\n",
"- Qiskit Runtime v0.22 or later (`pip install qiskit-ibm-runtime`)\n",
"\n",
"In addition, you will need access to an instance on [IBM Quantum Platform](/docs/guides/cloud-setup). Note that this tutorial cannot be executed on the Open Plan, because it runs workloads using [sessions](https://quantum.cloud.ibm.com/docs/en/api/qiskit-ibm-runtime/session), which are only available with Premium Plan access."
]
Expand Down
4 changes: 2 additions & 2 deletions docs/tutorials/quantum-kernel-training.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@
"## Requirements\n",
"\n",
"Before starting this tutorial, be sure you have the following installed:\n",
"- Qiskit SDK v1.0 or later, with visualization support ( `pip install 'qiskit[visualization]'` )\n",
"- Qiskit Runtime 0.22 or later (`pip install qiskit-ibm-runtime`)"
"- Qiskit SDK v1.0 or later, with [visualization](/docs/api/qiskit/visualization) support\n",
"- Qiskit Runtime v0.22 or later (`pip install qiskit-ibm-runtime`)"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/quantum-phase-estimation-qctrl.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"## Requirements\n",
"\n",
"Before starting this tutorial, be sure you have the following installed:\n",
"- Qiskit SDK v1.4 or later, with visualization support ( `pip install 'qiskit[visualization]'` )\n",
"- Qiskit SDK v1.4 or later, with [visualization](/docs/api/qiskit/visualization) support\n",
"- Qiskit Runtime v0.40 or later (`pip install qiskit-ibm-runtime`)\n",
"- Qiskit Functions Catalog v0.9.0 (`pip install qiskit-ibm-catalog`)\n",
"- Fire Opal SDK v9.0.2 or later (`pip install fire-opal`)\n",
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/readout-error-mitigation-sampler.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@
"\n",
"Before starting this tutorial, ensure that you have the following installed:\n",
"\n",
"- Qiskit SDK v2.1 or later with visualization support (`pip install 'qiskit[visualization]'`)\n",
"- Qiskit SDK v2.1 or later, with [visualization](/docs/api/qiskit/visualization) support\n",
"- Qiskit Runtime v0.41 or later (`pip install qiskit-ibm-runtime`)\n",
"- M3 Qiskit addon v3.0 (`pip install mthree`)"
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
"\n",
"Before starting this tutorial, be sure you have the following installed:\n",
"\n",
"- Qiskit SDK v2.0 or later, with visualization support ( `pip install 'qiskit[visualization]'` )\n",
"- Qiskit SDK v2.0 or later, with [visualization](/docs/api/qiskit/visualization) support\n",
"- Qiskit Runtime v0.40 or later ( `pip install qiskit-ibm-runtime` )\n",
"- Qiskit Experiments v0.12 or later ( `pip install qiskit-experiments` )\n",
"- Rustworkx graph library (`pip install rustworkx`)"
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/repetition-codes.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"\n",
"Before starting this tutorial, ensure that you have the following installed:\n",
"\n",
"- Qiskit SDK v2.0 or later with visualization support (`pip install qiskit[visualization]`)\n",
"- Qiskit SDK v2.0 or later, with [visualization](/docs/api/qiskit/visualization) support\n",
"- Qiskit Runtime v0.40 or later (`pip install qiskit-ibm-runtime`)"
]
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,9 +95,9 @@
"\n",
"Before starting this tutorial, ensure that you have the following installed:\n",
"\n",
"- Qiskit SDK 1.0 or later with visualization support (`pip install 'qiskit[visualization]'`)\n",
"- Qiskit Runtime 0.22 or later (`pip install qiskit-ibm-runtime`)\n",
"- SQD Qiskit addon 0.11 or later (`pip install qiskit-addon-sqd`)\n",
"- Qiskit SDK v1.0 or later, with [visualization](/docs/api/qiskit/visualization) support\n",
"- Qiskit Runtime v0.22 or later (`pip install qiskit-ibm-runtime`)\n",
"- SQD Qiskit addon v0.11 or later (`pip install qiskit-addon-sqd`)\n",
"- ffsim (`pip install ffsim`)"
]
},
Expand Down
8 changes: 4 additions & 4 deletions docs/tutorials/sample-based-quantum-diagonalization.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -140,10 +140,10 @@
"\n",
"Before starting this tutorial, ensure that you have the following installed:\n",
"\n",
"- Qiskit SDK 1.0 or later with visualization support (`pip install 'qiskit[visualization]'`)\n",
"- Qiskit Runtime 0.22 or later (`pip install qiskit-ibm-runtime`)\n",
"- SQD Qiskit addon 0.11 or later (`pip install qiskit-addon-sqd`)\n",
"- ffsim 0.0.58 or later (`pip install ffsim`)"
"- Qiskit SDK v1.0 or later, with [visualization](/docs/api/qiskit/visualization) support\n",
"- Qiskit Runtime v0.22 or later (`pip install qiskit-ibm-runtime`)\n",
"- SQD Qiskit addon v0.11 or later (`pip install qiskit-addon-sqd`)\n",
"- ffsim v0.0.58 or later (`pip install ffsim`)"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/shors-algorithm.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"source": [
"### Requirements\n",
"Before starting this tutorial, ensure that you have the following installed:\n",
"- Qiskit SDK v2.0 or later with visualization support (`pip install 'qiskit[visualization]'`)\n",
"- Qiskit SDK v2.0 or later, with [visualization](/docs/api/qiskit/visualization) support\n",
"- Qiskit Runtime v0.40 or later (`pip install qiskit-ibm-runtime`)"
]
},
Expand Down
Loading