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 = backend_sim.run(assemble(qc)).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 noteble 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.15.1.tar.gz (7.9 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.15.1-cp38-cp38-win_amd64.whl (7.6 MB view details)

Uploaded CPython 3.8Windows x86-64

qiskit_terra-0.15.1-cp38-cp38-win32.whl (7.6 MB view details)

Uploaded CPython 3.8Windows x86

qiskit_terra-0.15.1-cp38-cp38-manylinux2010_x86_64.whl (8.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

qiskit_terra-0.15.1-cp38-cp38-manylinux2010_i686.whl (8.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

qiskit_terra-0.15.1-cp38-cp38-macosx_10_9_x86_64.whl (7.6 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

qiskit_terra-0.15.1-cp37-cp37m-win_amd64.whl (7.6 MB view details)

Uploaded CPython 3.7mWindows x86-64

qiskit_terra-0.15.1-cp37-cp37m-win32.whl (7.6 MB view details)

Uploaded CPython 3.7mWindows x86

qiskit_terra-0.15.1-cp37-cp37m-manylinux2010_x86_64.whl (8.3 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

qiskit_terra-0.15.1-cp37-cp37m-manylinux2010_i686.whl (8.3 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

qiskit_terra-0.15.1-cp37-cp37m-macosx_10_9_x86_64.whl (7.6 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

qiskit_terra-0.15.1-cp36-cp36m-win_amd64.whl (7.6 MB view details)

Uploaded CPython 3.6mWindows x86-64

qiskit_terra-0.15.1-cp36-cp36m-win32.whl (7.6 MB view details)

Uploaded CPython 3.6mWindows x86

qiskit_terra-0.15.1-cp36-cp36m-manylinux2010_x86_64.whl (8.3 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

qiskit_terra-0.15.1-cp36-cp36m-manylinux2010_i686.whl (8.3 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

qiskit_terra-0.15.1-cp36-cp36m-macosx_10_9_x86_64.whl (7.6 MB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

qiskit_terra-0.15.1-cp35-cp35m-win_amd64.whl (7.6 MB view details)

Uploaded CPython 3.5mWindows x86-64

qiskit_terra-0.15.1-cp35-cp35m-win32.whl (7.6 MB view details)

Uploaded CPython 3.5mWindows x86

qiskit_terra-0.15.1-cp35-cp35m-manylinux2010_x86_64.whl (8.3 MB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ x86-64

qiskit_terra-0.15.1-cp35-cp35m-manylinux2010_i686.whl (8.3 MB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ i686

qiskit_terra-0.15.1-cp35-cp35m-macosx_10_9_x86_64.whl (7.6 MB view details)

Uploaded CPython 3.5mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: qiskit-terra-0.15.1.tar.gz
  • Upload date:
  • Size: 7.9 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for qiskit-terra-0.15.1.tar.gz
Algorithm Hash digest
SHA256 9ea1fcfd5e722fef55e150fd088571fabd835c54c398598990295e5ce3d8247b
MD5 64e133a4757a66cadfe1b43bec3830d6
BLAKE2b-256 f6625e8750d4b0ddf541c4028bdc30b1938feb48935a0e4ea79160eaf69084ef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.15.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 7.6 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.7.8

File hashes

Hashes for qiskit_terra-0.15.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 37a40604e79703fa3671a02ecdbd5f126c3501645a850aa311f2050204c12bb0
MD5 ff9d5e161d5dffc702936f27db38f967
BLAKE2b-256 15d6243625b5f4a3000b5f6372fcc7a96ecf99d8ec8ac6f158d854ed298c0fc0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.15.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 7.6 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.7.8

File hashes

Hashes for qiskit_terra-0.15.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 d0e98edf1250bd1d739eb9b6c2d4b145d87d816a8ac20e06107eee79a51aac2e
MD5 b2d05a067b00b744c303be5f993c7fc9
BLAKE2b-256 a31790552df2dc7c16ee565ad73bc9a51dd40a0672277c63f6e1d99276456f16

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.15.1-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 8.4 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for qiskit_terra-0.15.1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f34d06cb6564c79586b391904498c02a279fc9456395bc675159395aa5713d91
MD5 17f14f6c9b978bde350bc2ec2b1514f3
BLAKE2b-256 cba65075889427f0240d30aca3cd41f119bd030aeffade73f8e11e022015f62e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.15.1-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 8.4 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for qiskit_terra-0.15.1-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 4f06c04da9608ac89ac7873c99a685ba5ed30347d1533048aa6607e147e226a6
MD5 4820ef13ab43d2b457b25ebeb9b57c31
BLAKE2b-256 fd1fdf8f74b60fd3190e44548b5b892de84ded8d4bbd5c73948d371a47403bc6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.15.1-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 7.6 MB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for qiskit_terra-0.15.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 22c96e6c84bf67585dd5943befef8212847467eac2bd99dfee41ebe57a676e07
MD5 fc05b2eb097c2f41f18e847606eae068
BLAKE2b-256 f0dd975ba43ffb0bb4bf70698e375553aa858f64545265289123b859dff15fad

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.15.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 7.6 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.7.8

File hashes

Hashes for qiskit_terra-0.15.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 a6ea706853acd6e3ce6b17fe7a8c9f945d5177882568a7a66d1b47450825ea98
MD5 7f20e526a84f2d4f6bd73572afb608b1
BLAKE2b-256 a910645c69ce295833eab5e2f5b2f8aabe0e41d32140e263268f5df6aa249d86

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.15.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 7.6 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.7.8

File hashes

Hashes for qiskit_terra-0.15.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 1247aa20c5b69357181b695cea9af25642aeae61a83268302215d16cc8f2d426
MD5 83b24dabec1f0ae73ab1647facbaaaa9
BLAKE2b-256 8685b31b03384e632c4d52a179e528dd5a429599bf9b90553883a0a5b90498c6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.15.1-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 8.3 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for qiskit_terra-0.15.1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4c57b210fdb33377b32d199df2a0ccfbf5e78d1cbfdbcace2b0a676dd30338c7
MD5 2b67e195f12fb3b812df756eb8b99421
BLAKE2b-256 6a54f694d0ef1a8543f92f684c14e15e270ba25ff5af0fc1ba2049a7c1b4f5a6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.15.1-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 8.3 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for qiskit_terra-0.15.1-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3054ed02c0e79ee7531ae75aba0c5c9d709be56c51ae4d843eae96b857d5f47f
MD5 acd135dcdd7d6ca26fec8c4144660344
BLAKE2b-256 47fb6a315745566dce1897c997d7bf43f3dee4519aa8d9c6f17807c8a998bbe7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.15.1-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 7.6 MB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for qiskit_terra-0.15.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2437f9522cd6f09a86ad02e7b35b4c6dc0332791148de7dd4623db521b6d5aef
MD5 72c6a26f6ebe0e891f6cb3e7b4cffe3f
BLAKE2b-256 f431498f5a706becdc699b4ac52b71e96560b887f0d1901be15a5b7955e453b1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.15.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 7.6 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.7.8

File hashes

Hashes for qiskit_terra-0.15.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 fa286ed13be542551b05e659dc47c74e8b01615a2dde9f12c5e77577df28ff95
MD5 f68469861249d4e12c6bec0c28d9a26b
BLAKE2b-256 6e9efe8d848a1f602a560ca941c6b26ffce5c7d1079e1f9585ee843ce7040c90

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.15.1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 7.6 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.7.8

File hashes

Hashes for qiskit_terra-0.15.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 adae5898f4b03a8a79f6ea687cdd0ed8735bae9ceb31c73c71e2d23dc18b84c8
MD5 3cb214f2e96b329b8ea34d840bd9c875
BLAKE2b-256 b1da6047e4b52fc632e3fff150515fce744d5eb7674d6873a27cd424a698b87a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.15.1-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 8.3 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for qiskit_terra-0.15.1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d222d2fc4cb8322d44ba32ad93b2434c323b8aa11b39f964275f16ebd27158cb
MD5 c5d41317898a95d584b69d4656258169
BLAKE2b-256 82de3fa11306015106790d4cbd9da8df4f890e2605b19365c1c2b5ef206fe845

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.15.1-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 8.3 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for qiskit_terra-0.15.1-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 09699e36ae4994dc2313e8c622bb9de7c7e0f9fc5906df91cf06bd7d5916b561
MD5 740cb22da56647b6f145ba8ee90ba034
BLAKE2b-256 d6b8559afaa3b40c2e5fea0693ec40ce9138e89ece3f6314ec988d00b93a2236

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.15.1-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 7.6 MB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for qiskit_terra-0.15.1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 403aa37cedf2e1ee974d002c24b433aceab34d4314578aa09752d4dd709bc0aa
MD5 eb6bb4988179205ef0696af29b6618ec
BLAKE2b-256 8405992fb8989f3922f7e1f98c1c124a3dcfa4af09425a841234a6e9463a4671

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.15.1-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 7.6 MB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.7.8

File hashes

Hashes for qiskit_terra-0.15.1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 085c4f3acb94580d663b2a1887301e147c621ea0c5e68ffa04f812389c0317c0
MD5 7bb2394f07ba93ec5c3d2f8213e02231
BLAKE2b-256 7c32d84e191ba187f090fdc52229dce85eb826ca05a662fe5f5a4bcb2affea8b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.15.1-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 7.6 MB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.7.8

File hashes

Hashes for qiskit_terra-0.15.1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 55a7086675f475f98f393346d4b2aa2832759a3993b6a8d1e3fe515883c848cf
MD5 c298a05067766f160d367354c326069f
BLAKE2b-256 da637bfdc178f4486e267454c4671c7d8081f4477bbc96e44e1e48f57ae281bd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.15.1-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 8.3 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for qiskit_terra-0.15.1-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 0a89194d8d5cbeb62911b6b114036bbba97e489f17d351b50bdf2ec273b575bb
MD5 11935e1ea1530ac7b40672dae481857f
BLAKE2b-256 17c83a580e2f61016f532467562aba8acad39a9654f1d3baba0f6c19e01c62d0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.15.1-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 8.3 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for qiskit_terra-0.15.1-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 57df7277ebb7e5b3d9c01ba0bb59ca3a411c2832fb93e18e26497c43b9888523
MD5 6d00e29b953fe12510197868464f43c9
BLAKE2b-256 a97655239f5e48a0a0c01dc7d4806698abc200665fdf7b62e0ca2d59f7c665e9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.15.1-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 7.6 MB
  • Tags: CPython 3.5m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for qiskit_terra-0.15.1-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bbe582c6bcd62a15d5fde61425f73e1b369b8e3870cc2ae74296fad7fe2df622
MD5 90e83c2d80e8558bdfcfe5b03613a949
BLAKE2b-256 7cdfe9557484c6389cb7a283575ecdd25b783e3f0834fb88a2e59a9cbbbef2f5

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