-
Book Overview & Buying
-
Table Of Contents
Quantum Computing in Practice with Qiskit® and IBM Quantum Experience®
By :
With your Python environment prepared and ready to go, and your IBM Quantum Experience® account set up, you can now use pip to install the Qiskit® Python extension. The process should take about 10 minutes or so, after which you can use your Python command line, or your favorite Anaconda Python interpreter to start writing your quantum programs.
This recipe provides information about the generic way to install Qiskit® and does not go into any detail regarding operating system differences or general installation troubleshooting.
For detailed information about the most current requirements for Qiskit® installation, see the Qiskit® requirements page at https://qiskit.org/documentation/install.html.
$ conda create -n environment_name python=3
This will install a set of environment-specific packages.
$ conda activate...