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 noteable 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.14.1.tar.gz (6.3 MB view details)

Uploaded Source

Built Distributions

qiskit_terra-0.14.1-cp38-cp38-win_amd64.whl (6.0 MB view details)

Uploaded CPython 3.8Windows x86-64

qiskit_terra-0.14.1-cp38-cp38-win32.whl (6.0 MB view details)

Uploaded CPython 3.8Windows x86

qiskit_terra-0.14.1-cp38-cp38-manylinux2010_x86_64.whl (6.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

qiskit_terra-0.14.1-cp38-cp38-manylinux2010_i686.whl (6.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

qiskit_terra-0.14.1-cp38-cp38-manylinux1_x86_64.whl (6.8 MB view details)

Uploaded CPython 3.8

qiskit_terra-0.14.1-cp38-cp38-manylinux1_i686.whl (6.5 MB view details)

Uploaded CPython 3.8

qiskit_terra-0.14.1-cp38-cp38-macosx_10_9_x86_64.whl (6.0 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

qiskit_terra-0.14.1-cp37-cp37m-win_amd64.whl (6.0 MB view details)

Uploaded CPython 3.7mWindows x86-64

qiskit_terra-0.14.1-cp37-cp37m-win32.whl (5.9 MB view details)

Uploaded CPython 3.7mWindows x86

qiskit_terra-0.14.1-cp37-cp37m-manylinux2010_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

qiskit_terra-0.14.1-cp37-cp37m-manylinux2010_i686.whl (6.5 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

qiskit_terra-0.14.1-cp37-cp37m-manylinux1_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.7m

qiskit_terra-0.14.1-cp37-cp37m-manylinux1_i686.whl (6.5 MB view details)

Uploaded CPython 3.7m

qiskit_terra-0.14.1-cp37-cp37m-macosx_10_9_x86_64.whl (6.0 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

qiskit_terra-0.14.1-cp36-cp36m-win_amd64.whl (6.0 MB view details)

Uploaded CPython 3.6mWindows x86-64

qiskit_terra-0.14.1-cp36-cp36m-win32.whl (5.9 MB view details)

Uploaded CPython 3.6mWindows x86

qiskit_terra-0.14.1-cp36-cp36m-manylinux2010_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

qiskit_terra-0.14.1-cp36-cp36m-manylinux2010_i686.whl (6.5 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

qiskit_terra-0.14.1-cp36-cp36m-manylinux1_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.6m

qiskit_terra-0.14.1-cp36-cp36m-manylinux1_i686.whl (6.5 MB view details)

Uploaded CPython 3.6m

qiskit_terra-0.14.1-cp36-cp36m-macosx_10_9_x86_64.whl (6.0 MB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

qiskit_terra-0.14.1-cp35-cp35m-win_amd64.whl (6.0 MB view details)

Uploaded CPython 3.5mWindows x86-64

qiskit_terra-0.14.1-cp35-cp35m-win32.whl (5.9 MB view details)

Uploaded CPython 3.5mWindows x86

qiskit_terra-0.14.1-cp35-cp35m-manylinux2010_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ x86-64

qiskit_terra-0.14.1-cp35-cp35m-manylinux2010_i686.whl (6.5 MB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ i686

qiskit_terra-0.14.1-cp35-cp35m-manylinux1_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.5m

qiskit_terra-0.14.1-cp35-cp35m-manylinux1_i686.whl (6.5 MB view details)

Uploaded CPython 3.5m

qiskit_terra-0.14.1-cp35-cp35m-macosx_10_9_x86_64.whl (6.0 MB view details)

Uploaded CPython 3.5mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: qiskit-terra-0.14.1.tar.gz
  • Upload date:
  • Size: 6.3 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for qiskit-terra-0.14.1.tar.gz
Algorithm Hash digest
SHA256 15d1b5b29fb4adb4b3e7ca095f7c028d6f4686ebc9beeb402c01cc1ea8c4c884
MD5 3c7bda9985dcfaf36a7eaa03d590cf27
BLAKE2b-256 46c31853a804023e6f28878f0df410f012e58bbf8849c853074430bccb20507f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.14.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 6.0 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.6

File hashes

Hashes for qiskit_terra-0.14.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 d0b92a1ca3f997d1c63758f82ed272f222e8a98563f3f72ddb572e73a02e2a8e
MD5 c6bf06485cb8c7bb5bf3977b733ce39a
BLAKE2b-256 bf5224f5a895deeea269b96a6e323563621770b37e34cdc0bacc6ecc236f0a3c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.14.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 6.0 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.6

File hashes

Hashes for qiskit_terra-0.14.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 394c4932229abb279de6addccee45a4aa036873040b6aa4b87ef9c7b16ac3bc9
MD5 5414d55210b24916fa4d75de950d91db
BLAKE2b-256 633019f4952e1eb8e3382017ec44d56b33d173e1f2d3e9fbbf018eccf382f120

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.14.1-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 6.8 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for qiskit_terra-0.14.1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 9644906d151a36242c848a5704a7a03d8bf3637a350bb1b3c1201a2e6d470cfb
MD5 1a5427957ddc8fc798d8e940500f5dbf
BLAKE2b-256 c863f0fedeb9ca2635ab9a0108a0c36cd9e92de60bbfe93c12764572f8b3e0c6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.14.1-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 6.5 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for qiskit_terra-0.14.1-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 df6c75da2781e79afe29b2761d60f3f768ab78f04c4a782786aa86e58585a5fc
MD5 59c403658a7b2ad25453d02eb5d74b8a
BLAKE2b-256 82e7b9c8a75081cf5d51020b2ad6a5b7cee117d7577f994179b88f203681d9d1

See more details on using hashes here.

File details

Details for the file qiskit_terra-0.14.1-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: qiskit_terra-0.14.1-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 6.8 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for qiskit_terra-0.14.1-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5273d9618b0b8f27e8b74bfffdd90e714c8bfd7cb07025a5a82c7562c818b74d
MD5 116a4c0eb860694be548603daa8e87d2
BLAKE2b-256 4ffd23c3e4ed0648eca8cff4bc8081ef33a8567eacf3e07b7220ad0d38999ed2

See more details on using hashes here.

File details

Details for the file qiskit_terra-0.14.1-cp38-cp38-manylinux1_i686.whl.

File metadata

  • Download URL: qiskit_terra-0.14.1-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 6.5 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for qiskit_terra-0.14.1-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 6044040119685c358c8a8df0d3cc866c1e9f63e80ace6d5c1f6c8bc89d6d9b44
MD5 095bd35f185c326f5b3b59273fdb19b1
BLAKE2b-256 199c553ec7bd8b98b160167e12de1096cad8df93d3eefc59c3afffe253038809

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.14.1-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 6.0 MB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for qiskit_terra-0.14.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 43b32f0e04591a4790abb3adf4159be3b28985549a079b48f0d4cc18a2c2ca4c
MD5 1f902143d8a548fb0ee42534f201399e
BLAKE2b-256 1cc8b7a33d20818fc205e8c8a894c5ca5ec3d61096f59bc3bd8f730206b865eb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.14.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 6.0 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.6

File hashes

Hashes for qiskit_terra-0.14.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 7f7f2213cbc985119b862be51d241d2e82415e84966cd2264d9b0432d7b17dc0
MD5 3e796e9375080082b07a00f22dbd821a
BLAKE2b-256 6e3125b66cb2b2d0c43be7c63e04c313b0599b82e59c5ce959a1a9a33e12e0b7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.14.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 5.9 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.6

File hashes

Hashes for qiskit_terra-0.14.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 a5b74c3186d91d5f2ae5d736e59606ec8b1adf38385b979ccd34cb16f890d36b
MD5 0db1701e762409c9da4e75a337467acf
BLAKE2b-256 ba7c2f883f1c4fee627b2dadd205d1a790155a4fb47c1e660c4572d5eed2b2d1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.14.1-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 6.7 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for qiskit_terra-0.14.1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e4e3564cbfd6fa9121aa2a2c23e1dfef9423f6cb6696cb0d9ee347f320a1d601
MD5 9d8a72758b5aa0c84fb15692f198c3f4
BLAKE2b-256 ee547b4195eeda00e323bbf9c228fa7e0c6c0d95167531f25d3c97a808de469b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.14.1-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 6.5 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for qiskit_terra-0.14.1-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 df07b0f0a07fb620c0d1574ec9dfa872b6daa44c222c00118048e8e7ca378331
MD5 df9089d2e1596910f50017e4436c1d2a
BLAKE2b-256 986004c3931b30c9528eed1700ce5fb5f95ae569f385441f7894f2f371bfe20a

See more details on using hashes here.

File details

Details for the file qiskit_terra-0.14.1-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: qiskit_terra-0.14.1-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 6.7 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for qiskit_terra-0.14.1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 cf11cac155fdcf7c675910d6e45da4e877b056efa21fa6b9e8d42d0b38a187e8
MD5 0dc5619ce98082752d9c52669a24fa98
BLAKE2b-256 5f1b8567db2d083510b35eb0efcfc8a74e3e977abcb245d2017c3b93bf8e4163

See more details on using hashes here.

File details

Details for the file qiskit_terra-0.14.1-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: qiskit_terra-0.14.1-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 6.5 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for qiskit_terra-0.14.1-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 6aaa395fce238f88b6da6717d31a1cd70c8bf1cc3a8c7761d59872f8542eb2de
MD5 75b4bb490526bb8513cf1a799c1fb057
BLAKE2b-256 154e0717f340b31c977a5cff399f07309d65e8be6aa44abeb0a66159d0359350

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.14.1-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 6.0 MB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for qiskit_terra-0.14.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cc18bb5e2dce625e50da25131050b1c96f3b58ac52fd31b67c3e2ca68e1fe6ab
MD5 03613ec475cd788a932ada7b295881df
BLAKE2b-256 381bcff294971c4134db6b9acb118ae979beb5b3f8a1bd8bc6cc5bf2e1dc6092

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.14.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 6.0 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.6

File hashes

Hashes for qiskit_terra-0.14.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 c763f680588c681d0ec4f2c26bb952885af8e786331418c7857aa383f77c3085
MD5 4fa71e2251c43ceb4bab14ea5987c5b3
BLAKE2b-256 baeaf9c58dfb6111ed5d3b92bb5d814afc399cacdc56cbab6c25b115ed19d94b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.14.1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 5.9 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.6

File hashes

Hashes for qiskit_terra-0.14.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 f06892b5d8d516ed374ca55342379c09093cfc98c5bbe455782487caef50a815
MD5 0172ecce8aaf69cbfb1cc8ed08a599c6
BLAKE2b-256 bc57fe53b6550d422d6a09d03022e7e348246ee2d04b41c12df9f173f552b46f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.14.1-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 6.7 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for qiskit_terra-0.14.1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 43c26ee637a916bec02b148189f02da164d122110e0d0bcee2a9d375a3bfe538
MD5 27bf98cc1aa41396cdebdc741f90df5e
BLAKE2b-256 55c36c3561cbcf69a791307ada32d61b4eeb7ab6a38ac968e0f1e36f0e40b249

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.14.1-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 6.5 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for qiskit_terra-0.14.1-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 263e31cab23a640d3e7f9d598db92034b1bde2864d6e2b1d21c576ff498571ea
MD5 7037651688026d07520f6a0c25702e6d
BLAKE2b-256 21d5ba38784cdd3ebe714be510893500622462fc7362827f8f57bea5d9c8503f

See more details on using hashes here.

File details

Details for the file qiskit_terra-0.14.1-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: qiskit_terra-0.14.1-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 6.7 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for qiskit_terra-0.14.1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ab1c74c36577ba57d31e2cc46ea2790a9e7912f1d5567d88e9cc35359d9f1a34
MD5 c6de8eda07ba26113b95266e9899f1e8
BLAKE2b-256 d446b79357536eab2c8fda5e59403f26cf55dd2605a3eb8e5ea9ae793a08d4df

See more details on using hashes here.

File details

Details for the file qiskit_terra-0.14.1-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: qiskit_terra-0.14.1-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 6.5 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for qiskit_terra-0.14.1-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 78de3debb52dbb2b4d613926837772c6427ab3b8f740d574f45621b04db3583b
MD5 80294b9d7a1e23903749c3844e5b0971
BLAKE2b-256 fd1c2a450bae4d8dff3647126d7d76bf2d953e544d1def0d76f5e33e149a20a3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.14.1-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 6.0 MB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for qiskit_terra-0.14.1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 af67365e1db2c90e6a95a5cb75b0160676139677845e7115efd7d2bc2b1a4683
MD5 475619f28cdfd9cff734a97c04faf7ad
BLAKE2b-256 c89ec94a6018e4ffeb22f475574d3bda28749cdbfe71137d4ec639a2737e1b86

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.14.1-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 6.0 MB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.6

File hashes

Hashes for qiskit_terra-0.14.1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 341400eb8fcd6162c1bbfe21787cd93099e4aad597dff099d526b3b3a288c5e7
MD5 e35275c50ed77d5dced935a69cabccb4
BLAKE2b-256 57553e26fbb8eea7093f1603a29c629fe2aa6c730114b171c1a8da9a3d9b60c7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.14.1-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 5.9 MB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.6

File hashes

Hashes for qiskit_terra-0.14.1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 e2d45eb7420d152f3326bcc8c1bd3505f9f4ef2054f01187675699471cf9821f
MD5 42864dc4867fcab6f95e902258ecb421
BLAKE2b-256 0be44c31f0bf965e57facfce51ca81a0175e52c5654bbf33f11f3c4f98378c0b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.14.1-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 6.7 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for qiskit_terra-0.14.1-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 8992204ebd368c1b22b1d200a5491e6b8a7447a1faf581b019e28e86724ed48b
MD5 2ad697f5fe3d3f3da8465a9f554f1a55
BLAKE2b-256 577fc17bc4b7b9a581746daf3e4bac5d23b52764977ce7f53b53819c959f5e1e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.14.1-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 6.5 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for qiskit_terra-0.14.1-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 8e96352cc547481b54b58a50c74d9c79ac4d850ab3a49ceb18b0830f167b182d
MD5 f7c14cd97a12d073f30cc3db6ba57849
BLAKE2b-256 28a7253341100a8262c42e6fa1c37943960f53918b3e8b61361ca1af5e964612

See more details on using hashes here.

File details

Details for the file qiskit_terra-0.14.1-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: qiskit_terra-0.14.1-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 6.7 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for qiskit_terra-0.14.1-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a6fe9b2b4e09bbf1cf1dcb442f8b3b0ee9bfd161698703cbfcbe808d4b6ab9bb
MD5 d74a5966efc5646e9c2d63c6825857c2
BLAKE2b-256 68583d7f12ad58506d6415fe4a278db2f145a8226affe6e8a2b7af16966a8903

See more details on using hashes here.

File details

Details for the file qiskit_terra-0.14.1-cp35-cp35m-manylinux1_i686.whl.

File metadata

  • Download URL: qiskit_terra-0.14.1-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 6.5 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for qiskit_terra-0.14.1-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 8eb4828fbec03b2b1bd61a9926f0738d00a2bfd1185ec358405f87ed70b8b7aa
MD5 adaa466065068b88a1bf059644eac1fe
BLAKE2b-256 80802670df96961a50b91ebeddfebafd866395e7a1af8f6af99d5053abb6fafe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.14.1-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 6.0 MB
  • Tags: CPython 3.5m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for qiskit_terra-0.14.1-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3e0e0527a10b5e228d2c601d48e8b9251336367e5268fe30a72e2b6a10e6888f
MD5 0f8fa2dbc256612b7d2ad8f180aeb4c8
BLAKE2b-256 a6faeb0e1d0855e4587f5cf53fef6ef4bffbe066728cf11bbb0572ea4b9cf3f3

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page