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.0.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.0-cp39-cp39-win_amd64.whl (5.2 MB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

qiskit_terra-0.17.0-cp39-cp39-manylinux2014_aarch64.whl (6.1 MB view details)

Uploaded CPython 3.9

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

Uploaded CPython 3.9manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.12+ i686

qiskit_terra-0.17.0-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.0-cp38-cp38-win_amd64.whl (5.2 MB view details)

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

qiskit_terra-0.17.0-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.0-cp37-cp37m-win_amd64.whl (5.2 MB view details)

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

qiskit_terra-0.17.0-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.0-cp36-cp36m-win_amd64.whl (5.2 MB view details)

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6mWindows x86

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

qiskit_terra-0.17.0-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.0.tar.gz.

File metadata

  • Download URL: qiskit-terra-0.17.0.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.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for qiskit-terra-0.17.0.tar.gz
Algorithm Hash digest
SHA256 b042533c2ba1e6bb185779f64633f7293218ccacbb3af17dff5ec71b3eb36181
MD5 40fa00dd111cdde2584b8853e583a811
BLAKE2b-256 beba46f05c1ae2d88d957c0c8ee7dd63c76e06d8933c7cb59ae4d759897981ae

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.17.0-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.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for qiskit_terra-0.17.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4a1a35bebb919819b4c3fc889475478d72a6353f85e161cc01f8f6006a3cfd29
MD5 a4e62b986453da2564e9bcd0043fc2ad
BLAKE2b-256 df6f3efdd3d7e75f1bb6d126ebcf95d8ab52e05ae9b44381cf51559b15ddca11

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.17.0-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.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for qiskit_terra-0.17.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 a83cc6414be1240018bd8fae822269f85b469a565f8741f184aa0753651e6bba
MD5 1025fd84be02a2a29171ecb7922f9a11
BLAKE2b-256 4291a366ba635516bf268e9392391de71ed7cbcd69ecf2657ef6b46b14f883b5

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for qiskit_terra-0.17.0-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 661f48fbc31ac335c6e4fcb209f10e530e48f13b14bef6970b21adc6d211fe48
MD5 0bd3eff837225d7543f09b828bb95353
BLAKE2b-256 3b6ab8560f66d2bc5e1baf89d94736a0c8e23e6cad640e71f3e2bd6e29c4195f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.17.0-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.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for qiskit_terra-0.17.0-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a0c7259e11535df11149a6379ef35f5d26827764bd8a53fc4e3df0e6402daf97
MD5 ab44119feebcd4b8038d8935fd6a3b47
BLAKE2b-256 810c2f76c9cc677456a8e5e349825ce2115646b0d1b95ad3e58614e6b95b42ad

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.17.0-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.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for qiskit_terra-0.17.0-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 cbae13f51f6c397f1be6e2969ba3b0846de728d58bb7c07191074a8ed10764d9
MD5 8ea5139888617376d45bc32c94975047
BLAKE2b-256 95c46df45c35c8185a3cd535b6927286d4a305ac208c0bc05e3d0842e8f0c7af

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.17.0-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.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for qiskit_terra-0.17.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5c1a3078b16296f85b688fdeb08f62cb9716ef740657d22381a28f3bf7b88469
MD5 e26e2636c98e495e999837c97918d060
BLAKE2b-256 87eae8305e71d4ef156d0c18e7ef3b14a95f41c9e2aaf52818b93c4260129778

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.17.0-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.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for qiskit_terra-0.17.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 0372caed64dfc7b1b6f48a74d26b19392bb848527a06b0e3bccf2f35dfee889c
MD5 1b1997497f76e6d6ac72ecacba0fdd2c
BLAKE2b-256 863bfcb8bbf3db73be3c75bda870ceedf734fc2f3c61034c38f757b1f61c1e14

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.17.0-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.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for qiskit_terra-0.17.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 f05c74350e4a3285ec979c1d07b47baf2467b3151987179eb8160243fc5131e9
MD5 bc82ceadce9ec73be608f74f997a21af
BLAKE2b-256 6156d6567a90fc06e043840c693a7cd1db4ba4fa4d76f44386391d13f5144fec

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.17.0-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.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.9

File hashes

Hashes for qiskit_terra-0.17.0-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 09ae0bafec118514873af8679c648212af2ed4c443bd09c6d46f46659f3abb23
MD5 37297576fc728e60a64439be7451f180
BLAKE2b-256 4e3bf65ca179a010a9868f5ef3b6583e8e2ca943cc6bd235d40411d099c2f1df

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.17.0-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.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for qiskit_terra-0.17.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 63f9a099851b877db0d59c4911d214906df31eb609b32234d18706b006e003d1
MD5 fde3183848c03016ede3c74dd4318435
BLAKE2b-256 8822f030e6f7ba0d690e34240ed0918e5b734384bdcb282dbac856bc961f1e6c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.17.0-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.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for qiskit_terra-0.17.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e5bb2fdf1394837f03703a0eca86e210c3bb718f9834db33816423ab396f220f
MD5 5788d2af7c90c4e4e6523bfa9e1e40b1
BLAKE2b-256 565a7bbb2baaff5c9a55cbbc03f48c5993198570e3f9f6a2950a5f5d152ccedf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.17.0-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.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for qiskit_terra-0.17.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5f2858414a66fa386fdc31f322f8949c906e32e0c8f59b916995cdf465fc0e4c
MD5 badb925f9240128f2febd60f6ad931c9
BLAKE2b-256 d1b91a48c1899c93d713bc4ccf67508420cf57058220852d07bf32bfb69eaf95

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.17.0-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.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for qiskit_terra-0.17.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 9d684cd52ae26fd1b22d4320fec4e818dd01a5270553e26312585626b4608df5
MD5 67ed5cff512b2565d972869cb474ba10
BLAKE2b-256 ff28e184f4c3ed470986e58bb7345b43899e37a6411c49cb392d3406e7872683

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.17.0-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.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for qiskit_terra-0.17.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 7b502367ada6ea3c9286f12ea695ba469735781ead82cb7791e45ff1e5784db2
MD5 c8cb0b34859f0726e821b9b76ffc16b5
BLAKE2b-256 01593f069080596a60fc6c3acb88980a5788221be51d5440d1d94c4a4bc78a7a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.17.0-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.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.9

File hashes

Hashes for qiskit_terra-0.17.0-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f61413d09d7baef6c0d2631ae5339e553dcd5d69f58d549f95a28a3a49517b4f
MD5 43cb111935aa65c1dd7c05fa481706d8
BLAKE2b-256 a0dfcb0b3c16e047a9b8658a43eefe9629111869a3f0b052b9b1596ed9daa92b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.17.0-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.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for qiskit_terra-0.17.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 9cc527ae784f507af4659ee9a66fb2fcf52deb0a1c103ba2038d88733ce8e9db
MD5 c4c449aa0c91389704260a796589f6be
BLAKE2b-256 265039921a9aa428e3bb0ca1d646ad72e40d87e82699054b33344d9cf4e54a17

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.17.0-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.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for qiskit_terra-0.17.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2d617b9ce12d2b9735d2a5a741712de1e1036cb75f0119b0c3103696905f51f8
MD5 442026eb17f1c1164ee13eeacfefc409
BLAKE2b-256 e3b0f1a20a5d151a06c35a4e0b69504fcd39cc0ff08f0531a3ac7f2dd5944d7b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.17.0-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.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for qiskit_terra-0.17.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c5e48d7abf430e421953a9dca78739c161a0b052602d87a4e117594fa3f344ac
MD5 32347e52f797480033ceadcb02ae4980
BLAKE2b-256 8c291e23d3dbbac61adc465fe96f5367b0e45ca3b45e344f3c6f8527d584dd62

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.17.0-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.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for qiskit_terra-0.17.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 3cc8bc1675f8223332f6c55a753cc0aa5f3ed2c0eabdf7192685cf61fd7a31ab
MD5 43293bb5bd54905f994115f92cdf30d4
BLAKE2b-256 89ceb9d20213c323d20dcbb7c50fb49dd9d001395b1f9547468ea6eba0e65ce6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.17.0-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.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for qiskit_terra-0.17.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 d9dd874f6c03b3bcda6e62b10332be98b69832053c86da00edb0ec44bc114e3f
MD5 17751476e2aba3a6820db02f84b219a7
BLAKE2b-256 cce830d1e11eb1722b9c030f0c7423dd7f54f7a315d94d56c1f79d4e775e9bf9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.17.0-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.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.9

File hashes

Hashes for qiskit_terra-0.17.0-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 92a47af83d635a23ac3385a02e48c2c3ac44a27fadcc317891f341eabc07818e
MD5 68ddcd6636b6da4f71318281ea50cbff
BLAKE2b-256 c17840741c42ea08f63d8bcadfbd14255a0efc4a19a9f4b857b0e0774f43af5c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.17.0-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.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for qiskit_terra-0.17.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 ec63ad5b3c6856a1d75d85ef37d7e57462796a286108fc0d5543a94139ff85cd
MD5 994e25c90011a8151b27db2582178a4d
BLAKE2b-256 59196d6c8a9e50958d9a83abb198888ae594a717d28f49710b6ac9644e983143

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.17.0-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.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for qiskit_terra-0.17.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 577550056bf9b3eaa8c7b3eca480b1c61489ac00c93ff3886d6e27faf0310650
MD5 b32e2d4daa266dbd9f64f5591c871279
BLAKE2b-256 415ac96c0e912d46f92f8c0ab236483f82844dfc02798cb02bf28763be44e103

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.17.0-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.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for qiskit_terra-0.17.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8a943ad527a96c28a9ffbf6d58ccd353add09cbb802318d0d91009db2d9de1f1
MD5 1be10198a0c5d46292909a4e786335d6
BLAKE2b-256 9ea92195d368cc2d37c03512531df0e8de3385c984df6f23d02e4591e37fbbea

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