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.0.tar.gz (8.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.15.0-cp38-cp38-win_amd64.whl (8.3 MB view details)

Uploaded CPython 3.8Windows x86-64

qiskit_terra-0.15.0-cp38-cp38-win32.whl (8.3 MB view details)

Uploaded CPython 3.8Windows x86

qiskit_terra-0.15.0-cp38-cp38-manylinux2010_x86_64.whl (9.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

qiskit_terra-0.15.0-cp38-cp38-manylinux2010_i686.whl (9.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

qiskit_terra-0.15.0-cp38-cp38-macosx_10_9_x86_64.whl (8.3 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

qiskit_terra-0.15.0-cp37-cp37m-win_amd64.whl (8.3 MB view details)

Uploaded CPython 3.7mWindows x86-64

qiskit_terra-0.15.0-cp37-cp37m-win32.whl (8.3 MB view details)

Uploaded CPython 3.7mWindows x86

qiskit_terra-0.15.0-cp37-cp37m-manylinux2010_x86_64.whl (9.0 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

qiskit_terra-0.15.0-cp37-cp37m-manylinux2010_i686.whl (9.0 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

qiskit_terra-0.15.0-cp37-cp37m-macosx_10_9_x86_64.whl (8.3 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

qiskit_terra-0.15.0-cp36-cp36m-win_amd64.whl (8.3 MB view details)

Uploaded CPython 3.6mWindows x86-64

qiskit_terra-0.15.0-cp36-cp36m-win32.whl (8.3 MB view details)

Uploaded CPython 3.6mWindows x86

qiskit_terra-0.15.0-cp36-cp36m-manylinux2010_x86_64.whl (9.0 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

qiskit_terra-0.15.0-cp36-cp36m-manylinux2010_i686.whl (9.0 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

qiskit_terra-0.15.0-cp36-cp36m-macosx_10_9_x86_64.whl (8.3 MB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

qiskit_terra-0.15.0-cp35-cp35m-win_amd64.whl (8.3 MB view details)

Uploaded CPython 3.5mWindows x86-64

qiskit_terra-0.15.0-cp35-cp35m-win32.whl (8.3 MB view details)

Uploaded CPython 3.5mWindows x86

qiskit_terra-0.15.0-cp35-cp35m-manylinux2010_x86_64.whl (9.0 MB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ x86-64

qiskit_terra-0.15.0-cp35-cp35m-manylinux2010_i686.whl (9.0 MB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ i686

qiskit_terra-0.15.0-cp35-cp35m-macosx_10_9_x86_64.whl (8.3 MB view details)

Uploaded CPython 3.5mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: qiskit-terra-0.15.0.tar.gz
  • Upload date:
  • Size: 8.6 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.0.tar.gz
Algorithm Hash digest
SHA256 6573d770458580038e66d14fe15d55af1853470b5afffb4956fecafe540e4091
MD5 888e66d2217c85f611edeaf01b1fc298
BLAKE2b-256 f6b79016690927aaf03cd9efeeafe10fd0e3d023b3331db33429c405bf1f3146

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.15.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 8.3 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.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 cc0d4d60ab87a6536e41e4fcf61fbfcf7c9d2f34b92a0a0cd42dd751a972806d
MD5 7172580c4fec2ede9a465cb142076745
BLAKE2b-256 3b8382a66c852bf5562f02dff9a33e1d03d1a6f0312c801d01f2eb016b8a13fa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.15.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 8.3 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.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 aa8dc5f4456cb753e0f3899d4ded855a8bde36d4c59fd89bd1da5c394dfd3077
MD5 e1bdfd984e1708936958ac00039f20ab
BLAKE2b-256 a3dc9d28722238d27fe5c806b70da9ef5aba8f24bb1277352f4a958d9d054bbf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.15.0-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 9.1 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.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 935a6e98c607b8ced50fbd83e3f18104a8f1643bbd943539cedea90195a7c10e
MD5 bc30ba81d4e3618a0812730d6a2fb623
BLAKE2b-256 49db6b80d44f4aaa3fcb6d88a4c438da62cb7b7954dca40b5be3e2f4b320d6f7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.15.0-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 9.1 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.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 52a94237e7554d2614859ea5f8954a7fbaf76bf1ad018626506ce214ccc9592b
MD5 814a1827eb45bff3dbd85b0bc6564712
BLAKE2b-256 034cdc9312207019b360fb3dbbe9a22cdf7cca82756defd577db019b6acbd8c6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.15.0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 8.3 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.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 33e3ffbcba9f640afbd941f68095f05c3b4e07650ea2ce1515daa24f90a7094c
MD5 d37718110cf6aa9fdcaf317cb002ef49
BLAKE2b-256 4a83e86627f19ce70b5708de567fbec6de7fc3e2ace0b0a2648a83c87b59f883

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.15.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 8.3 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.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 cdeebcafa7d372baa7417dad650e247b16c030bdfdd5c1b66cfacd98ef8bb262
MD5 57f61f3bbdb5b430d8d0f2058fb392fd
BLAKE2b-256 29b4f20e58c340b019750a939a42c5daf4c6a632d2c134ed1e2ed3a58d3e1935

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.15.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 8.3 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.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 a075d7927f7f4be277e66e19c6f0eb316c52a6f20bcbdaa129b254062f330b0e
MD5 2d0f149ee9215453859850dae684e0e6
BLAKE2b-256 8e855323343cf0bdb449e2960bdc1194c2c91def0af8a608e82695667548bbf6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.15.0-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 9.0 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.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 091ee1ca37c4b3b99e1db05c8f8495669ce9de5e7ca320cf758f2a8805229f21
MD5 1ab09a619cd84d6970e88e474d003311
BLAKE2b-256 58701dcc2fc65f4992c821f6cae7b2d3bcdc17ddd67cb130953b873ebf9bbb6a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.15.0-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 9.0 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.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 97aa2cbef5ac1af41be3d86108b097057a8422e411c77818daf4540a2c1becd7
MD5 cae6f7cdf4077d00b51a1677282fe8b7
BLAKE2b-256 84cda0cc0b6fd371e0350c024ec2c140b1dcdbfa4c45d14812787e988840cb77

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.15.0-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 8.3 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.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5fad5f4586531c69050f9d3ae6e9d2baeb39a003425de861a93f2bb1a76ff05b
MD5 7b6084f9f72b2916a9a510480be4ff8d
BLAKE2b-256 2a2b1d2308eefde874d7758deea3b9a0fedaf4dbf9a59efcd7dd047e5b701262

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.15.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 8.3 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.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 f3c8ceeecfe77a00d5aca9ebd496b0b2c3459e2ac97002abcc2d80289623a148
MD5 2e513cc06a5a00bc3a291c00ccd3409d
BLAKE2b-256 754d33519896d5146bef190088e0892e54e33d077c6f41524002a0d385b0eb75

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.15.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 8.3 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.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 4e34ab6ed24b7cd238f02ead52ba43c1fe7f2a43a3aecf23c726f38bc2aa52b4
MD5 dd958d21990ef4751c6ab5aafc76ea28
BLAKE2b-256 3eed77e2b8d3f9b180e821e40df589dd7b1f0c3a5c7273de23d5240c53b6d2f9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.15.0-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 9.0 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.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 3516fed88aa69575df38d7043827b5b6c0a508c2be446034b618219de1544cb5
MD5 c5bf7da2ec3e84e28256eba4216841ec
BLAKE2b-256 b3ba4973aeb6d166ce52f4376cf193e0fe15f4b58d1ac36880d5327677204c71

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.15.0-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 9.0 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.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 eecc73182c28f17d6fff2fac22436d2b3afc449eaa7126aaf96e2a07351b6925
MD5 548ff110c1d262f6611173932e4d34d0
BLAKE2b-256 f494d925b77237ae82b0cb1c80fa8321b779a061b68ee92455215ce31bd4c08f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.15.0-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 8.3 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.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 452dbcae34b236d8920e1381f50d7de5cf21f9356539ffe4cfad785ca6618875
MD5 4dcd0f2ddb3a8cdda58e4684ba73b314
BLAKE2b-256 63aba2e6df2f2c2e08f3d7839aa44c9d1dd5bfd3179239234158b3ebcae6276c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.15.0-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 8.3 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.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 d232d123f815663feac05918f7766b9a0a78b7f3178e63681a0f2620ce779c1c
MD5 bcf38a143645278ce1eaaf7e56d76b18
BLAKE2b-256 e3e3584fa2050d43947f2e40c38b5b3c4afac6f6b84ed33c416cc43e3a00b433

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.15.0-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 8.3 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.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 222615bf8d723e314e81588156390e0a51a4e2275c8622aec7aa0177c1a906f6
MD5 f7049d25e1277abe3bb83b94307523ba
BLAKE2b-256 c172493f86aeff718fcde19e4b7198a070f093bf8a7bba2b47e0ec319a7c32cc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.15.0-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 9.0 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.0-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 2a4764f51c5769438c033fd1d22897ecccb71e01cb1a1f5b24c3ee5f0b613afd
MD5 219b3237c5abec15eca65730faa39561
BLAKE2b-256 8a7821b72a049ee5ec1610a2ee5f68b7ceda2cf0161afc9cb9bd5f5ea3136410

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.15.0-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 9.0 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.0-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 97a692a17bb79064b1d83b991303ca9452b6a9504fc3f100c960ad5719ef3780
MD5 4635c6650ad97f7a0e980adcfa9a757f
BLAKE2b-256 3d37022556dff245991cf0bff47c7608e4fc2986440f770d9e0f40257619ec07

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.15.0-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 8.3 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.0-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9958ebea567c7410916ca381a93828d541c572f84a50442ba01aeeafcb805ec8
MD5 b03bb9e4a9943ba47ef451ab7e61827e
BLAKE2b-256 8a8788f71f47b58342a6a761241112660beb07521c5462d8712379c010d491cb

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