Skip to main content

Software for developing quantum computing programs

Project description

Qiskit Terra

License

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). The following command installs the core Qiskit components, 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 QuantumCircuit, transpile
>>> from qiskit.providers.basicaer import QasmSimulatorPy
>>> qc = QuantumCircuit(2, 2)
>>> qc.h(0)
>>> qc.cx(0, 1)
>>> qc.measure([0,1], [0,1])
>>> backend_sim = QasmSimulatorPy()
>>> transpiled_qc = transpile(qc, backend_sim)
>>> result = backend_sim.run(transpiled_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.

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

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

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: Releases The changelog provides a quick overview of notable 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.21.0rc1.tar.gz (6.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.21.0rc1-cp310-cp310-win_amd64.whl (6.3 MB view details)

Uploaded CPython 3.10Windows x86-64

qiskit_terra-0.21.0rc1-cp310-cp310-win32.whl (6.3 MB view details)

Uploaded CPython 3.10Windows x86

qiskit_terra-0.21.0rc1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

qiskit_terra-0.21.0rc1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (6.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

qiskit_terra-0.21.0rc1-cp310-cp310-macosx_11_0_arm64.whl (6.3 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

qiskit_terra-0.21.0rc1-cp310-cp310-macosx_10_9_x86_64.whl (6.4 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

qiskit_terra-0.21.0rc1-cp310-cp310-macosx_10_9_universal2.whl (6.7 MB view details)

Uploaded CPython 3.10macOS 10.9+ universal2 (ARM64, x86-64)

qiskit_terra-0.21.0rc1-cp39-cp39-win_amd64.whl (6.3 MB view details)

Uploaded CPython 3.9Windows x86-64

qiskit_terra-0.21.0rc1-cp39-cp39-win32.whl (6.3 MB view details)

Uploaded CPython 3.9Windows x86

qiskit_terra-0.21.0rc1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

qiskit_terra-0.21.0rc1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (6.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

qiskit_terra-0.21.0rc1-cp39-cp39-macosx_11_0_arm64.whl (6.3 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

qiskit_terra-0.21.0rc1-cp39-cp39-macosx_10_9_x86_64.whl (6.4 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

qiskit_terra-0.21.0rc1-cp39-cp39-macosx_10_9_universal2.whl (6.7 MB view details)

Uploaded CPython 3.9macOS 10.9+ universal2 (ARM64, x86-64)

qiskit_terra-0.21.0rc1-cp38-cp38-win_amd64.whl (6.3 MB view details)

Uploaded CPython 3.8Windows x86-64

qiskit_terra-0.21.0rc1-cp38-cp38-win32.whl (6.3 MB view details)

Uploaded CPython 3.8Windows x86

qiskit_terra-0.21.0rc1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

qiskit_terra-0.21.0rc1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (6.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

qiskit_terra-0.21.0rc1-cp38-cp38-macosx_11_0_arm64.whl (6.3 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

qiskit_terra-0.21.0rc1-cp38-cp38-macosx_10_9_x86_64.whl (6.4 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

qiskit_terra-0.21.0rc1-cp38-cp38-macosx_10_9_universal2.whl (6.7 MB view details)

Uploaded CPython 3.8macOS 10.9+ universal2 (ARM64, x86-64)

qiskit_terra-0.21.0rc1-cp37-cp37m-win_amd64.whl (6.3 MB view details)

Uploaded CPython 3.7mWindows x86-64

qiskit_terra-0.21.0rc1-cp37-cp37m-win32.whl (6.3 MB view details)

Uploaded CPython 3.7mWindows x86

qiskit_terra-0.21.0rc1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

qiskit_terra-0.21.0rc1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (6.7 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

qiskit_terra-0.21.0rc1-cp37-cp37m-macosx_10_9_x86_64.whl (6.4 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

File details

Details for the file qiskit-terra-0.21.0rc1.tar.gz.

File metadata

  • Download URL: qiskit-terra-0.21.0rc1.tar.gz
  • Upload date:
  • Size: 6.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.5

File hashes

Hashes for qiskit-terra-0.21.0rc1.tar.gz
Algorithm Hash digest
SHA256 34e9722b7af8ba2687bb6fb85f44a6cb4b0843dae938cd1ffd3d137de07a6ad6
MD5 833c6b074de8b3e711d9a8af8b6cea71
BLAKE2b-256 259520e6f79412636c02673ec54edf92747705d336a110405f7d11e50e0a8a56

See more details on using hashes here.

File details

Details for the file qiskit_terra-0.21.0rc1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for qiskit_terra-0.21.0rc1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4a48c501f561b907271850382c282ee061718e032316b74fc6abbc8f8f288c6c
MD5 f889bf829bc548d5bc47ebb327b416ce
BLAKE2b-256 bbc88e2112e2e680c5a4c308a3723c0ca835ea62ec0a9cfa358b8d54f36e5968

See more details on using hashes here.

File details

Details for the file qiskit_terra-0.21.0rc1-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for qiskit_terra-0.21.0rc1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 72567306150f7c915a36c8ebfca31581ccd14675a3219c3731f374fa59b04877
MD5 55af6c63d31a7f25e8de89c251a757a9
BLAKE2b-256 a9d2e7483912e01f724cc200734aa2ae18f41f3b625667681afb9b00a22e098a

See more details on using hashes here.

File details

Details for the file qiskit_terra-0.21.0rc1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for qiskit_terra-0.21.0rc1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9661e73ee1da24b9fb6c213b30283dde37c8962ae56687265b05cf5174a1e361
MD5 47dfa38eff2375a52d989d714046ef70
BLAKE2b-256 9d9c5dc291c7a8b8aab1ed88a6452bea1ba6b1177884fd98840bcc617eac6a5d

See more details on using hashes here.

File details

Details for the file qiskit_terra-0.21.0rc1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for qiskit_terra-0.21.0rc1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e16db9b600e476d284e38571e0ddd1630517e20e03327ea329c984ce049f264d
MD5 2f6abcba57a559e5c8c1384dc1e17bce
BLAKE2b-256 0ed8dfd213af80234270a42d2d37cfe43c19de23d398a8cdb30cc360cad90883

See more details on using hashes here.

File details

Details for the file qiskit_terra-0.21.0rc1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for qiskit_terra-0.21.0rc1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a5da32eff6138837e2fa12042a671de2400d5febeed72d449bc2f87e1aebcb98
MD5 682e686b6102012a90e73fb906dff67c
BLAKE2b-256 d22ad4f74799a0be2c70cb7f07d16adb65a740df5443f77cc9930e7bebebd8d3

See more details on using hashes here.

File details

Details for the file qiskit_terra-0.21.0rc1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for qiskit_terra-0.21.0rc1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ddf76a5620c51bb4dcdfca22bfe5648771edacbf5ddb7f3cde314c267f1f339a
MD5 39d456bbc1c8b0f5f235dfbe225b88cb
BLAKE2b-256 9ea948f22d66cd28158cf2909d3939605cb9aef808ee5980913f36d1b11ee165

See more details on using hashes here.

File details

Details for the file qiskit_terra-0.21.0rc1-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for qiskit_terra-0.21.0rc1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 da1fc65da9c6cb46e885b9ff8ed6a24e87aec3be750eb2019cd7be3a62c6fe78
MD5 44244cecc0f0aac9b07de8fccefe9d8d
BLAKE2b-256 77b79a4a60b09b8977fbf360cf029eca6333d7296b92ea65f4ed027d9fa3b2e5

See more details on using hashes here.

File details

Details for the file qiskit_terra-0.21.0rc1-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for qiskit_terra-0.21.0rc1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b5cba13c444b250354d306517049823ac26f076d08eef66056dfc21af710b791
MD5 b1110c559a8efea0343889f940a94444
BLAKE2b-256 8fb446c26aaf8b38b84d2bb02b26903c27dbfc7961de7fe3182d77d6f69cf488

See more details on using hashes here.

File details

Details for the file qiskit_terra-0.21.0rc1-cp39-cp39-win32.whl.

File metadata

File hashes

Hashes for qiskit_terra-0.21.0rc1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 bd03a13c7ac9ef74d02871906f3517c7d2cd1bf80bf4a8513056b86d2a72a670
MD5 570326d40a780091d3a93b36f48e983b
BLAKE2b-256 c0aaf24a4df1990ffb4f6fa9be768b8c015998607ee06a373a56f65273bd4433

See more details on using hashes here.

File details

Details for the file qiskit_terra-0.21.0rc1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for qiskit_terra-0.21.0rc1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5bd9229442a2733af5f453b0faf7beaa33b3b295f4a0455787b4ab9fcecae9f6
MD5 f1647f10e14ffa15104c5d6d81dc0297
BLAKE2b-256 2e5f8d61ba43fdffb5b0896934c39ecba87254db38836c0263397ef48035e494

See more details on using hashes here.

File details

Details for the file qiskit_terra-0.21.0rc1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for qiskit_terra-0.21.0rc1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 795dfd3797c85b1c084345c43e11fc18ce06be8611631b22beeeecd802fb7af7
MD5 1edf15ebdf9080926a35e356376b8e43
BLAKE2b-256 0649dad4e6abaeaffab6f303985d0317f796cb16fa546cc4259bd204427a6f0e

See more details on using hashes here.

File details

Details for the file qiskit_terra-0.21.0rc1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for qiskit_terra-0.21.0rc1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 91a7062196e75879da31cbe159bff86109dbd336c36c43b18b13a9fbc9dde74a
MD5 b964b60bd62357bdb7cd6c371d31a4d2
BLAKE2b-256 3339a3d2a6178b4c1cf6a7d599e0c5779cc7c5ad23368de3cb1a30281ab23e30

See more details on using hashes here.

File details

Details for the file qiskit_terra-0.21.0rc1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for qiskit_terra-0.21.0rc1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ad50f421aefdfaaa2fdbe47be8d897b4aca2075d9723ef3f224ef5bc93ce3a9c
MD5 c742524c8f6f17de8bbed70c20f7bb0e
BLAKE2b-256 087b65f80d7ae8451e1d71d3e1bb64a828c2e487a5ac2e4a3930f261486f5429

See more details on using hashes here.

File details

Details for the file qiskit_terra-0.21.0rc1-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for qiskit_terra-0.21.0rc1-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 440f32496b7a920c0c600f1884a3269494f2ef1a6f04ed482c94e54c0d011cab
MD5 6e0bc3cd37c0b51a1a89129a4d12624a
BLAKE2b-256 59c6ca0e8d365ce6444648b91ea1354e50fdef01ef50f16953a203a46a51f1ad

See more details on using hashes here.

File details

Details for the file qiskit_terra-0.21.0rc1-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for qiskit_terra-0.21.0rc1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 3caf11e698f573c5d9b3171616e86f2a2e06b5ca369c567bd916ec530d929875
MD5 f0c0368570d8e43d2e1e8e58b99ff5bc
BLAKE2b-256 6ed460bdbc06a3e9ea0b74370026a929c2fdfbd2a20f488a18f309fc336ecaef

See more details on using hashes here.

File details

Details for the file qiskit_terra-0.21.0rc1-cp38-cp38-win32.whl.

File metadata

File hashes

Hashes for qiskit_terra-0.21.0rc1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 212d0c08171083606345d148bd64ae4b32acd2e9165abe5f1976d925e8d4ecaa
MD5 0b84dc4f781dbda0c0cc8562aae84d8c
BLAKE2b-256 41d1bd5a1293ea81751ef2e8b55172af599c08e0414d4c27cb1e33a1a0233cd8

See more details on using hashes here.

File details

Details for the file qiskit_terra-0.21.0rc1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for qiskit_terra-0.21.0rc1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a348fc6fbec0a6e52dfdc8fb3f99d32f826738cc65bfa58e737df27065f8df4b
MD5 15bd2622ee22f24c1f571441aea46fb7
BLAKE2b-256 3f56827d672c6177920e7662f30dae4c6ed4b3602d75badad4ba501ea75de3c0

See more details on using hashes here.

File details

Details for the file qiskit_terra-0.21.0rc1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for qiskit_terra-0.21.0rc1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 11ba5d7448501d7bc9b6c0b4ac6b8f0390f54f9a49a5d0f5e3be574cba9d63eb
MD5 6315a2918086e07d95d85d22f7ce2020
BLAKE2b-256 10fc3a0bd1893057550974cefa2637f0b2a52678cef84db8f5d4eb7129680298

See more details on using hashes here.

File details

Details for the file qiskit_terra-0.21.0rc1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for qiskit_terra-0.21.0rc1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f8088a86043f26af292750151cdecaee41929f2cd28a4a47b9f9f70c48b60899
MD5 189b46ad1c1879957ce37e632d8d0907
BLAKE2b-256 79b52d562bcc6d74ddf95f7873337e129f77884887368c3938c37da8fe16350b

See more details on using hashes here.

File details

Details for the file qiskit_terra-0.21.0rc1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for qiskit_terra-0.21.0rc1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 106ff53e1430ab0be48b8667b8f4a52b9226113a3da4ca92b99a9ad6d738674b
MD5 beaf62ec34f857ed40d050ebadc9abfb
BLAKE2b-256 7af093dd6016a53efa68bd44a45a42a17726b64aa68edcb412a97c7c3b213d80

See more details on using hashes here.

File details

Details for the file qiskit_terra-0.21.0rc1-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for qiskit_terra-0.21.0rc1-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 2f20cb679ad5a7b277a9ddba1e5bb752592f951a70f4f863fc3e7ee16c53c64e
MD5 3faf47dd32efcdbe85102d33651d7386
BLAKE2b-256 45f91c9393190443adf4bf8350369ec61159f51afad7fc44aea87de3c8cddbf8

See more details on using hashes here.

File details

Details for the file qiskit_terra-0.21.0rc1-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for qiskit_terra-0.21.0rc1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 40fefe7a362cfa2856dd1b58ccc7792120987503311f73484f8acd7fd181d226
MD5 6c6327644d4e5b1bc6dcf0008fe775fb
BLAKE2b-256 ff13275c36e3171224bc86bf84ed3c00638fe474ba91e7955091356d2fe19976

See more details on using hashes here.

File details

Details for the file qiskit_terra-0.21.0rc1-cp37-cp37m-win32.whl.

File metadata

File hashes

Hashes for qiskit_terra-0.21.0rc1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 0863483aa5295bdc5d9d711d7c752208ebc8ce47beab1f3854529426c1c954ff
MD5 5d7f760cff30f155b686e2d8664cd5c8
BLAKE2b-256 ccbf8028c5e18e36d4abec0a19cca4d30717452f3e36b89f7ba33cc605687c9e

See more details on using hashes here.

File details

Details for the file qiskit_terra-0.21.0rc1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for qiskit_terra-0.21.0rc1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e4e85a62e1ae6e31312cdc794881d205f66afeed53d7b4a73c4ceb87c482c50c
MD5 90dd1c8ad67071d9f0a90979a31159ca
BLAKE2b-256 0d6a9e8e9205c6beb767ccc85c8c22436af3f96e1da971210a6dbdd5c3e634d6

See more details on using hashes here.

File details

Details for the file qiskit_terra-0.21.0rc1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for qiskit_terra-0.21.0rc1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b4f56c861aef4ba39af113a96c791ee216551a60b134cbdf377cd4d34bc96a3c
MD5 e58692b59c85cfd6a2e9a91031b908d6
BLAKE2b-256 31946e1b6e8ce6111faf1b3348bd5dea1e0c92be2212576cbf5899cd685fe04f

See more details on using hashes here.

File details

Details for the file qiskit_terra-0.21.0rc1-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for qiskit_terra-0.21.0rc1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c4acbd593fe873c2594b570d1b40d4008ab864e737029955c07753f7014a3809
MD5 23280ed7a28ae7aa9eaaa108b8989225
BLAKE2b-256 78e0dcd5b323a7dbb732e7dea857f671779dfd10d3e09994b4905a5e85eb1a78

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