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')
>>> transpiled_qc = transpile(qc, backend_sim)
>>> result = backend_sim.run(assemble(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 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 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.17.1.tar.gz (5.4 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.17.1-cp39-cp39-win_amd64.whl (5.2 MB view details)

Uploaded CPython 3.9Windows x86-64

qiskit_terra-0.17.1-cp39-cp39-win32.whl (5.2 MB view details)

Uploaded CPython 3.9Windows x86

qiskit_terra-0.17.1-cp39-cp39-manylinux2014_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.9

qiskit_terra-0.17.1-cp39-cp39-manylinux2010_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ x86-64

qiskit_terra-0.17.1-cp39-cp39-manylinux2010_i686.whl (6.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ i686

qiskit_terra-0.17.1-cp39-cp39-macosx_10_9_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

qiskit_terra-0.17.1-cp38-cp38-win_amd64.whl (5.2 MB view details)

Uploaded CPython 3.8Windows x86-64

qiskit_terra-0.17.1-cp38-cp38-win32.whl (5.2 MB view details)

Uploaded CPython 3.8Windows x86

qiskit_terra-0.17.1-cp38-cp38-manylinux2014_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.8

qiskit_terra-0.17.1-cp38-cp38-manylinux2010_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

qiskit_terra-0.17.1-cp38-cp38-manylinux2010_i686.whl (6.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

qiskit_terra-0.17.1-cp38-cp38-macosx_10_9_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

qiskit_terra-0.17.1-cp37-cp37m-win_amd64.whl (5.2 MB view details)

Uploaded CPython 3.7mWindows x86-64

qiskit_terra-0.17.1-cp37-cp37m-win32.whl (5.2 MB view details)

Uploaded CPython 3.7mWindows x86

qiskit_terra-0.17.1-cp37-cp37m-manylinux2014_aarch64.whl (6.1 MB view details)

Uploaded CPython 3.7m

qiskit_terra-0.17.1-cp37-cp37m-manylinux2010_x86_64.whl (6.0 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

qiskit_terra-0.17.1-cp37-cp37m-manylinux2010_i686.whl (6.0 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

qiskit_terra-0.17.1-cp37-cp37m-macosx_10_9_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

qiskit_terra-0.17.1-cp36-cp36m-win_amd64.whl (5.2 MB view details)

Uploaded CPython 3.6mWindows x86-64

qiskit_terra-0.17.1-cp36-cp36m-win32.whl (5.2 MB view details)

Uploaded CPython 3.6mWindows x86

qiskit_terra-0.17.1-cp36-cp36m-manylinux2014_aarch64.whl (6.1 MB view details)

Uploaded CPython 3.6m

qiskit_terra-0.17.1-cp36-cp36m-manylinux2010_x86_64.whl (6.0 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

qiskit_terra-0.17.1-cp36-cp36m-manylinux2010_i686.whl (6.0 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

qiskit_terra-0.17.1-cp36-cp36m-macosx_10_9_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: qiskit-terra-0.17.1.tar.gz
  • Upload date:
  • Size: 5.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for qiskit-terra-0.17.1.tar.gz
Algorithm Hash digest
SHA256 a97f03dab652e76efd308a2b4fb5cfe3dc9eed0a327ac31a40715acf9f3dc061
MD5 c37ff78e5c8df17409977ea1f9370ddb
BLAKE2b-256 fa0fb2bd0699ad00f93a531860108fd6c9067a9c8b62de077b6bc4479f69ded9

See more details on using hashes here.

File details

Details for the file qiskit_terra-0.17.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: qiskit_terra-0.17.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 5.2 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for qiskit_terra-0.17.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 28e9aa3589a37fdb87c84912a8e9001c2dc4266bc7f69cbde35d4248255275a9
MD5 21495420eaf43acbbdd106749b99f289
BLAKE2b-256 973931a8ac92260a0be644de2ccd15589091f647f969f8326aa0e9f675679c2e

See more details on using hashes here.

File details

Details for the file qiskit_terra-0.17.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: qiskit_terra-0.17.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 5.2 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for qiskit_terra-0.17.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 ad5e36aa75b91f278f371a7478fa531e761f12ca68e28b7bf3eb2aa5fcc6026c
MD5 c1aba06d6e4ca86c265ebf9300f5fcb9
BLAKE2b-256 ed3f6bad68aa48d41263d21e97f5cb7786618d0b72e049f78e52c9c0dff1605c

See more details on using hashes here.

File details

Details for the file qiskit_terra-0.17.1-cp39-cp39-manylinux2014_aarch64.whl.

File metadata

  • Download URL: qiskit_terra-0.17.1-cp39-cp39-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 6.2 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.7.9

File hashes

Hashes for qiskit_terra-0.17.1-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 93a13ab30ed8221c16ba82daed9e1e1a0a158ce7f8ce197dbd8b102cedf8638d
MD5 53672373ff692d18af3c1e7e43af2d4a
BLAKE2b-256 3d7cd7eece7e1b5b2cc49eeb0830bacc0eb290f597d6cca1824f797c82bcd4c0

See more details on using hashes here.

File details

Details for the file qiskit_terra-0.17.1-cp39-cp39-manylinux2010_x86_64.whl.

File metadata

  • Download URL: qiskit_terra-0.17.1-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 6.1 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for qiskit_terra-0.17.1-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f786d858ccedb814873b2cf9ce9c6a438d885c3138aa381e9980e0d88fd2ffe1
MD5 bf7aa23bdb3ce2d6a345e7ded1a9e2bb
BLAKE2b-256 82a163684ec520d8478d8a6d2329bd454d394fcfce873edf3b09421c2858ed07

See more details on using hashes here.

File details

Details for the file qiskit_terra-0.17.1-cp39-cp39-manylinux2010_i686.whl.

File metadata

  • Download URL: qiskit_terra-0.17.1-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 6.0 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for qiskit_terra-0.17.1-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ad763cb9a24c6af3c34f6e3bbef86704acb113e93726fad1f6e15bb7f8a6c1c5
MD5 0c39ee3da3e07d4647b21f0e0a235b6f
BLAKE2b-256 0a58e8fff0fb0cf7c17795afda041599ea396602de6365dbff7646dd004a0098

See more details on using hashes here.

File details

Details for the file qiskit_terra-0.17.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: qiskit_terra-0.17.1-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 5.2 MB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for qiskit_terra-0.17.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9d52dfe94b65a70eded8ff25dc0f81aef8c457129017d323077bd62031fec13f
MD5 6755fff77c3c37c448263f79e52127ec
BLAKE2b-256 f0abe159ad89fa0e4c3e3f361447934f7336d36e38009ac4b48ce8581c3b3a99

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.17.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 5.2 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for qiskit_terra-0.17.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 544e9b0d97c00321356ec0972cc60bb6d8846bf66b02e1a60d2ff7a8a6576a6f
MD5 7f81209ac9e427cd798aca2e25992b2b
BLAKE2b-256 c10c7de1185d982db4aadbdaf22986733067e638b639bc6fa16933a00984ad26

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.17.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 5.2 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for qiskit_terra-0.17.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 a14e981a9327220dd7ed88efb1e8367888789902a9493b8f8fc523048492118c
MD5 203541465231bb9d7c832b432d6e6279
BLAKE2b-256 4df2cb72319d103cc72a4f81382b452d1e669afce14f4250aedb15071df3ea79

See more details on using hashes here.

File details

Details for the file qiskit_terra-0.17.1-cp38-cp38-manylinux2014_aarch64.whl.

File metadata

  • Download URL: qiskit_terra-0.17.1-cp38-cp38-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 6.2 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.7.9

File hashes

Hashes for qiskit_terra-0.17.1-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a78ceeecd02843dece1dc6d78f2c0b58dd9f3ece54c52d1af3b8248356f9a5e6
MD5 ac8056da01296c77842fbff79b4a10f3
BLAKE2b-256 0c22bf2b36ac0cf1c0ad739491430989242e4d310e0b3f3bb4f1bb9017a6d6b0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.17.1-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 6.1 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for qiskit_terra-0.17.1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f3ccaf5bef5a7fa1082b5790f2f0f7539f36b08f2c8d19fc94e1c41c37d2bfe6
MD5 e35bdbcbba2327f94e4fd5f0129a0d12
BLAKE2b-256 d55731446e2cc3ef1efecc48f6b029b07c2af4e4040e9bb8fbe571293163cb99

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.17.1-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 6.1 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for qiskit_terra-0.17.1-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 93aed8580a78270568291a0cae140e19cdd841f337f66d6705302310a9dae816
MD5 b5f90d02a2c1526193a2f578479e28a5
BLAKE2b-256 1213c70a671518c607a9605f2bef0102ffe5861acfdcc145e41ec56e407b87c1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.17.1-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 5.2 MB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for qiskit_terra-0.17.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4c2fc6d97a241da5afe427b4b54ba7c8a1e0d808a8bd9d1b201c212ad6f4efa8
MD5 86d9f488fa944ddb279b050c5947617e
BLAKE2b-256 d64dbcef9386cf43e56b9dc99624ab603662994ceb09728831d02f6f117d29d1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.17.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 5.2 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for qiskit_terra-0.17.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 b2c8853e6ad7259e3434b08230e107b5327b83145c227e16ae41024f12efc59e
MD5 bd9bf5f28022f933d3634c61e216e124
BLAKE2b-256 f07dcd1fabcfdb4d9c9454ee8711056549c7a2690fddd824cc03aabc848ff1bf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.17.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 5.2 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for qiskit_terra-0.17.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 42c44d5e240fc08b85bd53c93286941b926fbd66ab32652fa06f882a92e748fb
MD5 9b9e0a1f37f1071c0745dae46d4ad0de
BLAKE2b-256 d62c538ba6242a4b312d43054c2c36fe81c7f9f283c770fa713bcff78a7ed8a2

See more details on using hashes here.

File details

Details for the file qiskit_terra-0.17.1-cp37-cp37m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: qiskit_terra-0.17.1-cp37-cp37m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 6.1 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.7.9

File hashes

Hashes for qiskit_terra-0.17.1-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d61255442da3a784917232becdc873c2eed0041b54329a9eab164af3077700b6
MD5 502e3f1e50a452d18100088c956ee138
BLAKE2b-256 3f2ee52e29a5ea59df8b39184f5e33b4f09957e8e623f822e10c68f46b23d80e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.17.1-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 6.0 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for qiskit_terra-0.17.1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b835590f276786305e1e81ee7d4035d4236a9fbbad44de83a129ec0173d2ac97
MD5 8858ef18567bd54399eb673a06e259f6
BLAKE2b-256 3b4b58f79398313098edc4b1d161bd93290e7b9af213545eab7073739a84d58b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.17.1-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 6.0 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for qiskit_terra-0.17.1-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 dd7ef133b9c260b0b9a46419ae694343a45d9de0d4586a084d8517bae1be2a8b
MD5 1226d20240cd58554f3c6f54a4f37b89
BLAKE2b-256 ff80cd9116ce5b8c5a7822866b80313370fcab5fffddfb00afb6f3e83817d2d6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.17.1-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 5.2 MB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for qiskit_terra-0.17.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a658e763337ded62055132e27075e3d375ba5c3de0516ca09b8f6018f519d0a9
MD5 21b4f370dde5e29479ae884e8cdd229d
BLAKE2b-256 f28214930bb36ad3dbf6256cad2d32b20aa43897fb724654a6c828d6d5cc2bc5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.17.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 5.2 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for qiskit_terra-0.17.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 6093e78544b81d7aa18d4660b828f7ca2168677440d097c1b08baf21b0bb2e70
MD5 856660745e6f1169207b1e1c20701040
BLAKE2b-256 f9bde8fc937f09f4ffdbe0d154414468ee822b4d641db875e9b0e75f6b49cfb2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.17.1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 5.2 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for qiskit_terra-0.17.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 7c98f2ee08948f1e7778b97e38c345eac049012fb8bb5553657adfbd475e41f1
MD5 5eb0754fb559409ac4d3bc892b5c6ca0
BLAKE2b-256 353e6d06f3311c0cb2d39cdc85ecb2f285b93736424232c611cb678fca4d3ddb

See more details on using hashes here.

File details

Details for the file qiskit_terra-0.17.1-cp36-cp36m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: qiskit_terra-0.17.1-cp36-cp36m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 6.1 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.7.9

File hashes

Hashes for qiskit_terra-0.17.1-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 488f3391db3a12a50a017840a949e5dbc91764435e7dd4d4a1f643d92901f28e
MD5 bd228035c354446f86b33b0e42d6c932
BLAKE2b-256 039384b2a2cc8bacfb7f6e4e139cfeca9c1d57fc6df8e30f3486b440ec9695cb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.17.1-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 6.0 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for qiskit_terra-0.17.1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 41da5c0e3d5a2df16c1c8d89f82812f7030c16f99050eb21211d134aade922b6
MD5 d774fbbc9af9a4bd3da8e538d67bca5d
BLAKE2b-256 b51afb3a6d81ce000f624023de5425f33de6b68cc46e6daa713ec687c73011d0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.17.1-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 6.0 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for qiskit_terra-0.17.1-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 9b7c9ae77b679a66d42277be23152acbf35dc4995b25c7b79505da65e112a7fa
MD5 9b82eabb584ac5ee9cdd38cfa6136710
BLAKE2b-256 88609dc4ada52b54e9ca2a041eb247e5b07e379eb54064ec445d49c427d04b16

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.17.1-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 5.2 MB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for qiskit_terra-0.17.1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ef62c8833ad00f197388757cba6644907a492a9a9e7af33053fe7df7b1650ad2
MD5 1b57c1dec1553cb1f6a9ebb69a405470
BLAKE2b-256 192b6bc8bdb5e0267326247543758fedcaba17c84d133ef5f0a20f6377a1919d

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