Skip to content

Latest commit

 

History

History
165 lines (105 loc) · 4.89 KB

install.rst

File metadata and controls

165 lines (105 loc) · 4.89 KB

Installation and setup

1. Get the tools

To use QISKit you'll need to have installed at least `Python 3.5 or later <https://www.python.org/downloads/`__ and Jupyter Notebooks (recommended for interacting with the tutorials).

For this reason we recommend installing Anaconda 3 python distribution, which already comes with all these dependencies pre-installed.

if you are a Mac OS X user, you will find Xcode useful: https://developer.apple.com/xcode/

if you are willing to contribute to QISKit or just wanted to extend it, you should install Git too: https://git-scm.com/download/.

2. PIP Install

The fastest way to install QISKit is by using the PIP tool (Python package manager):

pip install qiskit

3 Repository Install

Other common option is to clone the QISKit SDK repository on your local machine, and change into the cloned directory:

  • If you have Git installed, run the following commands:
git clone https://github.com/QISKit/qiskit-sdk-py
cd qiskit-sdk-py
  • If you don't have Git installed, click the "Clone or download" button on the QISKit SDK GitHub repo, unzip the file if needed and finally change into the unziped directory.

3.1 Setup the environment

To use QISKit as standalone library, install all the dependencies:

# Depending on the system and setup, appending "sudo -H" before this command could be needed.
pip install -r requires.txt

To get the tutorials working set up an Anaconda environment for working with QISKit, and install the required dependencies:

  • If running either Linux or Mac OS X with Xcode, simply run the following command:
make env
  • If running on Mac OS X without Xcode, run the following set of commands:
conda create -y -n QISKitenv python=3 pip scipy
activate QISKitenv
pip install -r requires.txt
  • If running on Windows, make sure to execute an Anaconda Prompt and run the following command:
.\make env

4. Configure your API token

  • Create an IBM Q experience account if you haven't already done so
  • Get an API token from the IBM Q experience website under “My Account” > “Personal Access Token”
  • You will insert your API token in a file called Qconfig.py. First copy the default version of this file from the tutorial folder to the main SDK folder (on Windows, replace cp with copy):
cp Qconfig.py.default Qconfig.py
  • Open your Qconfig.py, remove the # from the beginning of the API token line, and copy/paste your API token into the space between the quotation marks on that line. Save and close the file.

Install Jupyter-based tutorials

The QISKit project provides you a collection of tutorials in the form of Jupyter notebooks, which are essentially web pages that contain "cells" of embedded Python code. To run a cell, click on it and hit Shift+Enter or use the toolbar at the top of the page. Any output from a cell is displayed immediately below it on the page. In most cases, the cells on each page must be run in sequential order from top to bottom in order to avoid errors. To get started with the tutorials, follow the instructions below.

1.1 Install standalone

jupyter notebook index.ipynb

1.2 Install into the QISKit folder

  • If running either Linux or Mac OS X with Xcode, simply run the following command from the QISKit SDK folder:
make install-tutorials

make run-tutorials
  • If running on Windows, make sure you are running an Anaconda Prompt, and then run the following commands from the QISKit SDK folder:

.\make run-tutorials

FAQ

If you upgrade the dependencies and get the error below, try the fix shown below the error:

  • Depending on the system and setup, appending "sudo -H" before this command could be needed.
pip install -U --no-cache-dir IBMQuantumExperience
  • Fix: run the command below
curl https://bootstrap.pypa.io/ez_setup.py -o - | python

For additional troubleshooting tips, see the QISKit troubleshooting page on the project's GitHub wiki