Skip to main content

Software for developing quantum computing programs

Project description

Qiskit Terra

LicenseBuild StatusCoverage Status

Qiskit is an open-source framework for working with noisy quantum computers at the level of pulses, circuits, and algorithms.

Qiskit is made up of elements that work together to enable quantum computing. This element is Terra and is the foundation on which the rest of Qiskit is built.

Installation

We encourage installing Qiskit via the pip tool (a python package manager), which installs all Qiskit elements, including Terra.

pip install qiskit

PIP will handle all dependencies automatically and you will always install the latest (and well-tested) version.

To install from source, follow the instructions in the documentation.

Creating Your First Quantum Program in Qiskit Terra

Now that Qiskit is installed, it's time to begin working with Terra.

We are ready to try out a quantum circuit example, which is simulated locally using the Qiskit BasicAer element. This is a simple example that makes an entangled state.

$ python
>>> from qiskit import *
>>> qc = QuantumCircuit(2, 2)
>>> qc.h(0)
>>> qc.cx(0, 1)
>>> qc.measure([0,1], [0,1])
>>> backend_sim = BasicAer.get_backend('qasm_simulator')
>>> result = execute(qc, backend_sim).result()
>>> print(result.get_counts(qc))

In this case, the output will be:

{'00': 513, '11': 511}

A script is available here, where we also show how to run the same program on a real quantum computer via IBMQ.

Executing your code on a real quantum chip

You can also use Qiskit to execute your code on a real quantum chip. In order to do so, you need to configure Qiskit for using the credentials in your IBM Q account:

Configure your IBMQ credentials

  1. Create an IBM Q > Account if you haven't already done so.

  2. Get an API token from the IBM Q website under My Account > API Token and the URL for the account.

  3. Take your token and url from step 2, here called MY_API_TOKEN, MY_URL, and run:

    >>> from qiskit import IBMQ
    >>> IBMQ.save_account('MY_API_TOKEN', 'MY_URL')
    

After calling IBMQ.save_account(), your credentials will be stored on disk. Once they are stored, at any point in the future you can load and use them in your program simply via:

>>> from qiskit import IBMQ
>>> IBMQ.load_account()

Those who do not want to save their credentials to disk should use instead:

>>> from qiskit import IBMQ
>>> IBMQ.enable_account('MY_API_TOKEN')

and the token will only be active for the session. For examples using Terra with real devices we have provided a set of examples in examples/python and we suggest starting with using_qiskit_terra_level_0.py and working up in the levels.

Contribution Guidelines

If you'd like to contribute to Qiskit Terra, please take a look at our contribution guidelines. This project adheres to Qiskit's code of conduct. By participating, you are expected to uphold this code.

We use GitHub issues for tracking requests and bugs. Please join the Qiskit Slack community and use our Qiskit Slack channel for discussion and simple questions. For questions that are more suited for a forum we use the Qiskit tag in the Stack Exchange.

Next Steps

Now you're set up and ready to check out some of the other examples from our Qiskit Tutorials repository.

Authors and Citation

Qiskit Terra is the work of many people who contribute to the project at different levels. If you use Qiskit, please cite as per the included BibTeX file.

Changelog and Release Notes

The changelog for a particular release is dynamically generated and gets written to the release page on Github for each release. For example, you can find the page for the 0.9.0 release here:

https://github.com/Qiskit/qiskit-terra/releases/tag/0.9.0

The changelog for the current release can be found in the releases tab: The changelog provides a quick overview of noteable changes for a given release.

Additionally, as part of each release detailed release notes are written to document in detail what has changed as part of a release. This includes any documentation on potential breaking changes on upgrade and new features. For example, You can find the release notes for the 0.9.0 release in the Qiskit documentation here:

https://qiskit.org/documentation/release_notes.html#terra-0-9

License

Apache License 2.0

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

qiskit-terra-0.13.0.tar.gz (2.6 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

qiskit_terra-0.13.0-cp38-cp38-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.8Windows x86-64

qiskit_terra-0.13.0-cp38-cp38-win32.whl (2.3 MB view details)

Uploaded CPython 3.8Windows x86

qiskit_terra-0.13.0-cp38-cp38-manylinux2010_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

qiskit_terra-0.13.0-cp38-cp38-manylinux2010_i686.whl (2.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

qiskit_terra-0.13.0-cp38-cp38-manylinux1_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.8

qiskit_terra-0.13.0-cp38-cp38-manylinux1_i686.whl (2.9 MB view details)

Uploaded CPython 3.8

qiskit_terra-0.13.0-cp38-cp38-macosx_10_9_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

qiskit_terra-0.13.0-cp37-cp37m-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.7mWindows x86-64

qiskit_terra-0.13.0-cp37-cp37m-win32.whl (2.3 MB view details)

Uploaded CPython 3.7mWindows x86

qiskit_terra-0.13.0-cp37-cp37m-manylinux2010_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

qiskit_terra-0.13.0-cp37-cp37m-manylinux2010_i686.whl (2.8 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

qiskit_terra-0.13.0-cp37-cp37m-manylinux1_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.7m

qiskit_terra-0.13.0-cp37-cp37m-manylinux1_i686.whl (2.8 MB view details)

Uploaded CPython 3.7m

qiskit_terra-0.13.0-cp37-cp37m-macosx_10_9_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

qiskit_terra-0.13.0-cp36-cp36m-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.6mWindows x86-64

qiskit_terra-0.13.0-cp36-cp36m-win32.whl (2.3 MB view details)

Uploaded CPython 3.6mWindows x86

qiskit_terra-0.13.0-cp36-cp36m-manylinux2010_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

qiskit_terra-0.13.0-cp36-cp36m-manylinux2010_i686.whl (2.8 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

qiskit_terra-0.13.0-cp36-cp36m-manylinux1_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.6m

qiskit_terra-0.13.0-cp36-cp36m-manylinux1_i686.whl (2.8 MB view details)

Uploaded CPython 3.6m

qiskit_terra-0.13.0-cp36-cp36m-macosx_10_9_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

qiskit_terra-0.13.0-cp35-cp35m-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.5mWindows x86-64

qiskit_terra-0.13.0-cp35-cp35m-win32.whl (2.3 MB view details)

Uploaded CPython 3.5mWindows x86

qiskit_terra-0.13.0-cp35-cp35m-manylinux2010_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ x86-64

qiskit_terra-0.13.0-cp35-cp35m-manylinux2010_i686.whl (2.8 MB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ i686

qiskit_terra-0.13.0-cp35-cp35m-manylinux1_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.5m

qiskit_terra-0.13.0-cp35-cp35m-manylinux1_i686.whl (2.8 MB view details)

Uploaded CPython 3.5m

qiskit_terra-0.13.0-cp35-cp35m-macosx_10_9_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.5mmacOS 10.9+ x86-64

File details

Details for the file qiskit-terra-0.13.0.tar.gz.

File metadata

  • Download URL: qiskit-terra-0.13.0.tar.gz
  • Upload date:
  • Size: 2.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for qiskit-terra-0.13.0.tar.gz
Algorithm Hash digest
SHA256 01ab885e1c5c7638f547dda5611dfd1af67cb4a4a6807827f4b1c9c22c0f5e88
MD5 ad3ee282adff690ff346b7c7f58af1c6
BLAKE2b-256 a334bf167e348f82dda236a04bbcff5b622154711af9a832468ce64b70f51827

See more details on using hashes here.

File details

Details for the file qiskit_terra-0.13.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: qiskit_terra-0.13.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.6

File hashes

Hashes for qiskit_terra-0.13.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 75d1d7d43fdff449b889dbb46bf29affe23a6bbdff81ae4220007cc06e4466e2
MD5 0e778bbe1a16ab2ff291bd9cb4a4176f
BLAKE2b-256 88625bd51f4ed14a68162f511be9cdf318c1ca7db0024fec230718fa294a0485

See more details on using hashes here.

File details

Details for the file qiskit_terra-0.13.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: qiskit_terra-0.13.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.6

File hashes

Hashes for qiskit_terra-0.13.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 27b8d4d0b72716463bdefd81d5f8cab5763f06ed89dd3169256bb4b6d2da8fa1
MD5 65e97f05fd74616cb3e20b07d3a8b07c
BLAKE2b-256 806f56d17f976e930571e2fa96aeff35b1e5ed78da68134b8c607883b4e698b6

See more details on using hashes here.

File details

Details for the file qiskit_terra-0.13.0-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: qiskit_terra-0.13.0-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for qiskit_terra-0.13.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 79303e2285f25af5ef46d99389ce026f417c14194aa314d0002c56549cc2788a
MD5 cc357679bf1df9693ff5d18ae0273a88
BLAKE2b-256 5aea7e52196e0b6187e606f0962cd8abe15ad2065528db4604bffaddbae53145

See more details on using hashes here.

File details

Details for the file qiskit_terra-0.13.0-cp38-cp38-manylinux2010_i686.whl.

File metadata

  • Download URL: qiskit_terra-0.13.0-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for qiskit_terra-0.13.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 366ecaca805c2dd9a4341ef591384037623d09bf5b5fd72e892f0bd3a760c2d9
MD5 2c394ac824bc4b7d56c412cfc2d3b539
BLAKE2b-256 10559292605ab277aaa0689ff7ea05031f7c5a14e500d8eebfeb2667c5fab3b3

See more details on using hashes here.

File details

Details for the file qiskit_terra-0.13.0-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: qiskit_terra-0.13.0-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for qiskit_terra-0.13.0-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 8bee9481e739351acb6fc3d04310298d972dbae0629d6c2f81a789b573284ace
MD5 4e49e23cd6fdbe876fef7b15fa843679
BLAKE2b-256 03d66883c003b57de56ae09b55ce2f09758ad04105cdc5e2a9adb2bf94089ef3

See more details on using hashes here.

File details

Details for the file qiskit_terra-0.13.0-cp38-cp38-manylinux1_i686.whl.

File metadata

  • Download URL: qiskit_terra-0.13.0-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for qiskit_terra-0.13.0-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 e14f7e8555ade2ae1562b2ab654308bd24572f4c2e996aa33c632219f6e5b1af
MD5 33dba3e0324d31234940f976c90fcaac
BLAKE2b-256 822b085a0c90c78c74a5eb124266336a718d34a71849315118a49114808434fb

See more details on using hashes here.

File details

Details for the file qiskit_terra-0.13.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: qiskit_terra-0.13.0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for qiskit_terra-0.13.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2ab00bcbf0e7371ba2685e0224110c4261bb631cca801b7bdc08a93dc4a765cf
MD5 6742c19406cf1ad45fc646db736712bb
BLAKE2b-256 68ba52417a2f80d17a45d8637c331d9b922e1d2a64016bc5d0387559dbcd16c5

See more details on using hashes here.

File details

Details for the file qiskit_terra-0.13.0-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: qiskit_terra-0.13.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.6

File hashes

Hashes for qiskit_terra-0.13.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 c2bac9ddae43db3d547f8ec9adca4a64da59273cd7b5c478c527fc803cd58b53
MD5 7ee154d4244d2c9c9d063fed48f6dcb6
BLAKE2b-256 51a372b94a297ce18f801a42f5b44415209d67cae1848713cfe45966c2fccef9

See more details on using hashes here.

File details

Details for the file qiskit_terra-0.13.0-cp37-cp37m-win32.whl.

File metadata

  • Download URL: qiskit_terra-0.13.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.6

File hashes

Hashes for qiskit_terra-0.13.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 243b3703017b6addeaebc6e9f432238e92148bcc68ddb46c508310f8f9d95819
MD5 d044fa194e804a00e26dcde27a09a34a
BLAKE2b-256 da9fdaa0f5a270b4aa925203e7bdb23ffe66ede0ee67cbdadfd8ce85813acf43

See more details on using hashes here.

File details

Details for the file qiskit_terra-0.13.0-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: qiskit_terra-0.13.0-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for qiskit_terra-0.13.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 23f007916de58b49be0dee9daff6186939ed2724d4a26081350728d70062482a
MD5 79a75a7fa87ca8316f21fcb883316bf8
BLAKE2b-256 eb3f6cf01017a7bc1d793429a9038aa73af17960e598d26f633a0b6c1e38244b

See more details on using hashes here.

File details

Details for the file qiskit_terra-0.13.0-cp37-cp37m-manylinux2010_i686.whl.

File metadata

  • Download URL: qiskit_terra-0.13.0-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for qiskit_terra-0.13.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3df6eb02afaf772a37f4b78e2772701b207b02f3686fb5bce3327deeb2acafb4
MD5 28bb21fe6142bc5c65b1c57e423a3c94
BLAKE2b-256 8ee2c8e11e933512df1d2987ff6356bf8f8af751307255b9f7ae3aac6e0072f8

See more details on using hashes here.

File details

Details for the file qiskit_terra-0.13.0-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: qiskit_terra-0.13.0-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for qiskit_terra-0.13.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 fcf9a6be717c078aef00b037cac38d2d7b94d36d892166db4c15140369c357eb
MD5 e4c5ca3305196ebb3a901c28d307e8eb
BLAKE2b-256 572f4f3f736feee64b9593c442982dfa53c44f228656a038051b6086bcfe26fc

See more details on using hashes here.

File details

Details for the file qiskit_terra-0.13.0-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: qiskit_terra-0.13.0-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for qiskit_terra-0.13.0-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 67cdfb979238effc326de82a5ed48612e7e98e4c6c90a4eb463cfc34ae881ace
MD5 6fd94077a01b62dcbc30c9848939ba13
BLAKE2b-256 af2fbe92c4af47bb31e6fa0b9b733bd0eefacbab841d4f3568f16876dd10d6ca

See more details on using hashes here.

File details

Details for the file qiskit_terra-0.13.0-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: qiskit_terra-0.13.0-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for qiskit_terra-0.13.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b656147deb3abba7c82fac4465cce51a7e5b2f851dd3bf7784d6751c881bebe6
MD5 ba3afe081ca0574769ec35c3723c5080
BLAKE2b-256 8fcc371e1de07648aa4b19a0ca02d8e61bfe1b75fd04158b51ff6a5533ca3c99

See more details on using hashes here.

File details

Details for the file qiskit_terra-0.13.0-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: qiskit_terra-0.13.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.6

File hashes

Hashes for qiskit_terra-0.13.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 14fbf270eca434f631ee4a19e0ced599102187098d10c580268fa02f47bde6dd
MD5 f7e2a096dc28e22d85e7c0a5600acd31
BLAKE2b-256 7ca3c22adf71f7c96b5e18d6253777c770325596203d25ff2e27d53dd43dcc37

See more details on using hashes here.

File details

Details for the file qiskit_terra-0.13.0-cp36-cp36m-win32.whl.

File metadata

  • Download URL: qiskit_terra-0.13.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.6

File hashes

Hashes for qiskit_terra-0.13.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 63019fecf414933843c9c001dc0f97052484a73c5eb2d0ae2037d14890f86667
MD5 da3660a82330588843242c0321c1a648
BLAKE2b-256 9fbe165823fd559ad43667fab9dd8b42889db00d52c603017edbf3f0472fd9d7

See more details on using hashes here.

File details

Details for the file qiskit_terra-0.13.0-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: qiskit_terra-0.13.0-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for qiskit_terra-0.13.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 2e4c251c4922e5408d9c48e078d43ca301b2d62d63a192463d00582bf8229948
MD5 9b58ab21739f8ce77dc272c3f966ea77
BLAKE2b-256 f47b3cca9feb422031c328f3f8ce592527f7373a2e0ad3a0ebf68826f792b730

See more details on using hashes here.

File details

Details for the file qiskit_terra-0.13.0-cp36-cp36m-manylinux2010_i686.whl.

File metadata

  • Download URL: qiskit_terra-0.13.0-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for qiskit_terra-0.13.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 9993f470deff44dce4202e4ea92f049dfe0c3c00ecd7b7761fdafb413b7ab235
MD5 2bf9f6d9930bdad8d7e4ed42d73c2ce8
BLAKE2b-256 b636287dadf9e79dc12573e136f60f3cb33747b7ef2b0949eab9d580f4fb96fd

See more details on using hashes here.

File details

Details for the file qiskit_terra-0.13.0-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: qiskit_terra-0.13.0-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for qiskit_terra-0.13.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e228f325af07ee119c89ab960b966ff33c96a1d29495b191830ed5e36a16a2f8
MD5 2b0725e8500d18d45322d779afb919a8
BLAKE2b-256 5622fdada926bcb92351140d31f34d51a0acf4af57280a76339bfc415c224651

See more details on using hashes here.

File details

Details for the file qiskit_terra-0.13.0-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: qiskit_terra-0.13.0-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for qiskit_terra-0.13.0-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 5060dde5f07349d1d2c2aed3e663b8c8b3603c11ead8e1f74bb8c8c3c4febd65
MD5 3e645434988acd4e90c3ea4a6b704890
BLAKE2b-256 a08015dc3697a94a90bef85cba0b43f34db492ff0f1a97ab5e95812d452db5d1

See more details on using hashes here.

File details

Details for the file qiskit_terra-0.13.0-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: qiskit_terra-0.13.0-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for qiskit_terra-0.13.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7f70021a650ed4091f5259116e3b6ed63cea790863d3e22bbdb290c066d5e18c
MD5 838bb098a8d389b4cf8812d863899941
BLAKE2b-256 bb4399ed2c79fe724787aedf2b940f84ac9ef04a3696c412edba6a91594ab9fc

See more details on using hashes here.

File details

Details for the file qiskit_terra-0.13.0-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: qiskit_terra-0.13.0-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.6

File hashes

Hashes for qiskit_terra-0.13.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 ceab42f30dbf3df6e4b4157c992ed5d5394099df8c9afcf27a005a1e93323f62
MD5 7435b155a874e427937d7efdf1b1f641
BLAKE2b-256 a7f46f47761cbaaeb0b399157dd040dccd5e6b16a966b3d54815cc8055c93cec

See more details on using hashes here.

File details

Details for the file qiskit_terra-0.13.0-cp35-cp35m-win32.whl.

File metadata

  • Download URL: qiskit_terra-0.13.0-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.6

File hashes

Hashes for qiskit_terra-0.13.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 5bfe6602edcf40e4f3a4fac7960664fc8d4a7442aa746bc3e57bcdfc1e2b5ba1
MD5 1e4579bf2e79b47e52e8d899f6972252
BLAKE2b-256 28327c4b993b7b07fc8a60ee921c2e0ff9faf14d29b030281b8043aea12ed5be

See more details on using hashes here.

File details

Details for the file qiskit_terra-0.13.0-cp35-cp35m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: qiskit_terra-0.13.0-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for qiskit_terra-0.13.0-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e32ee303b3e61402b4fe637f19bb164b786a087240e323a14ac814dbda187cd5
MD5 8f0eacf001734655eb7ff08d9a9aa189
BLAKE2b-256 9449a27f172877ddb689d33ffd1f3fecf451f8926250e486b3bf2e2532be8607

See more details on using hashes here.

File details

Details for the file qiskit_terra-0.13.0-cp35-cp35m-manylinux2010_i686.whl.

File metadata

  • Download URL: qiskit_terra-0.13.0-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for qiskit_terra-0.13.0-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e844ae411c929c7ee1d0a9e450b1787c33b70c976d0b7f1a170c0854bc4c2fd0
MD5 188b7c153f1b0b05dd12ac99f29bc314
BLAKE2b-256 a8effcfad5a7846fcbc414571b52347fe109fa6fe5920de921e527e3cf920474

See more details on using hashes here.

File details

Details for the file qiskit_terra-0.13.0-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: qiskit_terra-0.13.0-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for qiskit_terra-0.13.0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b948a850061af8217a191fc10e3984f40010b47d49d6b6c61acc3ab7dd88eff8
MD5 e912ef27745b05f98bf04b6f79aa5728
BLAKE2b-256 ccd3c6d070f1339db5e7eaba86a22350d3a7c5d6cca2712d57d45b9993842d3a

See more details on using hashes here.

File details

Details for the file qiskit_terra-0.13.0-cp35-cp35m-manylinux1_i686.whl.

File metadata

  • Download URL: qiskit_terra-0.13.0-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for qiskit_terra-0.13.0-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 8e4392c01866cd89fa4f7babd02a5e044c5b485644e2dedf0f80bbc8c22adce7
MD5 2eb3711b9ae393e8a94eb2a41018500c
BLAKE2b-256 f2b408b79325da7055c9d78391226d077a37a554a57a26a2935f2aeb0ce10536

See more details on using hashes here.

File details

Details for the file qiskit_terra-0.13.0-cp35-cp35m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: qiskit_terra-0.13.0-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.5m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for qiskit_terra-0.13.0-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1b7f93247df116bbd465e4a14376683e1c6c5dc488462e0bef061fbe4cea5472
MD5 4dc544c11d99ccac117b9996d4c72df4
BLAKE2b-256 c816a49d4c400f9bef7008c2490dc829a70b5883e511adad80567ce9bdaed32a

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page