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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

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

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6mWindows x86

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

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

qiskit_terra-0.14.0-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.0-cp35-cp35m-win_amd64.whl (6.0 MB view details)

Uploaded CPython 3.5mWindows x86-64

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

Uploaded CPython 3.5mWindows x86

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

Uploaded CPython 3.5mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.5mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m

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

File metadata

  • Download URL: qiskit-terra-0.14.0.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.0.tar.gz
Algorithm Hash digest
SHA256 aa20af6452afe709021093334f165aeaaec45bc00030e5f324ed68fc6a821a03
MD5 ddf25848169530540e976a4c34aca1c2
BLAKE2b-256 7824b0578ef1fd14edb98bc61ab959d9c9a8f2c5bb8e2e616ed5a0fe416d3fb2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.14.0-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.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 9c23f9595e8cdddb0b413f19172a45507caa164a159e24c13534fd668680f8ca
MD5 5ad340c3e9ec424eed64ce2f0eb73aa0
BLAKE2b-256 92bb857e2640a74d812e216cd0c4a1fed90f3e1ad0aca4c0644b8f0ac0f9dadd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.14.0-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.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 91eff64a2711b4643ab1f7ca54637a162b94a1e66c24df25fe121aa7f5074b0b
MD5 17ab180e93a4217193252034e29fe3a3
BLAKE2b-256 c87145d48505a5b3fbf1d274568de2fd6a2e86f8e2f22f977dd5b200a1e515b3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.14.0-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.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 62b8599ae82a1abafa04aaa40210ec92780d55b97d4bc3efb16b1f417488ecea
MD5 d1cf0472ab4c0b1fc032643782f9f5a5
BLAKE2b-256 b2db0048d0a195fc38536cc0e0a4f59c535c26468a17a5fddf9688265f4b830f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.14.0-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.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b8d2ad9a8d89d171c08334363552a20fe781424aedf8c028610cf61fbf8fa2da
MD5 dbfb569d15d16f91924b5f38cd999a2f
BLAKE2b-256 d2e730d0c62670a66a2b99087832c8bff2539a8703531776bc92361e27b1f578

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.14.0-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.0-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f16c1246bfdd22a2b06c18f5462bff56c99d5cc52c44cf112657e6cd50eac95d
MD5 1c817c9ffb0e6e14e9bb45a84f6ec2ee
BLAKE2b-256 7d3ae8279ad9d0dca6a2d5580a0426181859806129dfd468b50e48b4304e5466

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.14.0-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.0-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 08a1c88bbaec1bd60a70d1908bb6b3f7357fe0d76d97096fc787f3f1b51c2427
MD5 a99f3de6c49ebeabd488faf212c86620
BLAKE2b-256 081743886d8ea0668021d14ef14d0d841fdfd48a834b40c79369fd78c6b6857d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.14.0-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.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a574063cf21cb85227a9d066c77bd946c726bee5a10f29a3008feef4d300284e
MD5 ed57862c95ec8f5e8399d1fad7172ec8
BLAKE2b-256 290744192614f16f5fa038de4cdf2006b882b3ef1ffca35173ed95276295e0e4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.14.0-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.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 8a88935e02cb38d9853f0762624f06e73c22d03c2c8ae7f17e44d38a319b03fa
MD5 ae2cda0bf32fd1c0e0793e175def9dad
BLAKE2b-256 5344bad52bd1e61bde5480a7727de456e07b4a2853ebd93ff22ea3655ec8ff2f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.14.0-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.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 2588ba12a84fca2fbb7400dd906ab37f0c4adb017a17f66154f904766c0051e1
MD5 13af0f3465bb76943e2142e9b4e137b2
BLAKE2b-256 1206dfc5db7865ef4e7c380796600e1b5ff7ebacb3625536022637607f07650e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.14.0-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.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e619aef7b229184b43586c5d3e4da488fc4c571f3593091199fd4ad7ded8b0a1
MD5 94cd978969b2a07c87f2b494675e0f6d
BLAKE2b-256 02256e103b89959fd11cfdd0d596cea1b61c551f0c0c527450bf917380033c72

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.14.0-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.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a5f820a96b37c87f322c4ab75ac68cf10d51ac2051160e33270672e0abab2134
MD5 afd6491452b5e77fd48f0229d5161cad
BLAKE2b-256 42a12eb781fa5f66cdf36512678cbb6451c59d879e54b15b1841380eb0f096a2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.14.0-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.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 4ef1e50a02fe0f97a6859dc93be3f4f43218c26f0896c86179d791694c595cf5
MD5 c90a3d0f801e99f2e06bab936aefd486
BLAKE2b-256 6e310d9102644c70ac59f53e25c112b146bfbd3293a65e36fd8dd391ce828314

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.14.0-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.0-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 c5d085529dc4d5a5823321b902b861873eae9e4f28c232e994d4b710bc036864
MD5 0a9d703450b099eebec8ac3dfab73e95
BLAKE2b-256 30717d8b9d0598c07a184f762c46fe8e1405e751112ffd2d27ab777dcd219b13

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.14.0-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.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 eb44b9569a54a562219e7304614fb495531d4b820f90152e856f4d40380bf9da
MD5 05362024330ed6a03c57bf478b250476
BLAKE2b-256 3e59efc7991feb33b7ee2a09515030f3753294ed7ccc8369d4162d7912a205fd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.14.0-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.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 242aa8eea25844937956f3cb28fe6f8ae94212cdcbe76cabaa5b6166cc556068
MD5 df4f2442766736ab016b1c41ebf6b7c8
BLAKE2b-256 febd1eb5056caa2fc9a1fedb617fe83e64037e819d37bd6ebe3b84852a968cf5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.14.0-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.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 82ff32b965daa203b4a711ffadceddd9077ac42de1b1c798d6ee288019edd926
MD5 4fc6b9dc1b6a135d05a2390cd595f857
BLAKE2b-256 0f590cbed654945197b2956cdde9f35ff122d6d6c424dd7f615cb0f93e2491ab

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.14.0-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.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e6fc5b3e6189218a1f0abbe717d1a1efa21b7861202591755678919b9528f501
MD5 5bf6a98b35179fca70e4f84fa50f2ef7
BLAKE2b-256 24465c5675a1924c02989d4a9b52865d2f1b1d8d9f05f77c5c408dac983bebef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.14.0-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.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 aeb94581024a7f14461cf48a037e8c5e61a8ff107578e54882c71e9cdef8c24c
MD5 847649dce8278341f38300eeebc1bbde
BLAKE2b-256 283e10910462c4a9ea1252f9feeb2225c3e4b16683757fcbf5a4f00551eff1d9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.14.0-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.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 cbded4fe86ebd7f1f35a8dfd0267469b92809d261fb64b614e42a50b1e6735b4
MD5 04f6a75a83a80c24c2f20262fad55ae9
BLAKE2b-256 a61d8f9f14ac64362ffa4c43b4bd785da46aa3504979de99e37e7c1b3ba73dd5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.14.0-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.0-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 e6ed6c453f8827096ebc785e1e73d87709bdb749a6b085e3693afe54bd4cc9b9
MD5 717b93a519be6a0848fd415f922f7bcf
BLAKE2b-256 66becc7a6fe5378f92ddff6c5c74ed4197c3e71bb7bc1b8e6f767f76c88df807

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.14.0-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.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 12ad888cc23e3f3532dcbee77ab134ccd1f1786387b5c87eb391dcc75ce74373
MD5 a50129fa937c2dd25ccf3f148609dcf9
BLAKE2b-256 0715cca47d00a6953fd9746fca44804394d42db056443be14c08d3635d001f30

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.14.0-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.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 107e01b1d38a19f1c2225e74f94f4a3fe376177607f19fbe596ef487da2dafb2
MD5 983331439e08f831cbc05ac0164d0e1b
BLAKE2b-256 9c494e2485999d2eb85dddf84f98ca04ea94bb86ba0c50f1c44ac7dbb83c6da5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.14.0-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.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 41b9954655d92975137de068b4cbf09c8f41755d557a592143fb9dcbe16ca748
MD5 c57be8047910b79f41e9987a77c8c7a6
BLAKE2b-256 d7c6780fcc49083ec4c12cbfc2d722f95282f6c5bc5fdfd67c06775d8d4a8b4d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.14.0-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.0-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4ee1934dd33d559fc568771369bd92b46f6dd9f46892a0dc76445b11b8a5e74d
MD5 c84f770115937a155fbc60f0e8a4db52
BLAKE2b-256 c683dbde3e1d836a783724c95abe778af9a10bd324fd1a9a0d172cf26e8ad8e2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.14.0-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.0-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 505d591b6764c9930f002ea99d09f23d88260ba7ef4d41a7c432bb43e0321349
MD5 8a9937297f255a7a471d5f36e67ee0b6
BLAKE2b-256 86f3175b765a2b682a7e4e91d78c6255d7882a77eaabd763d289aaa192696f92

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.14.0-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.0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f3e3a489f59c11c3f98e53abaf5428991826199cf6f4de4f92370fe9987ed25f
MD5 50d026a1685cf249f61e023f35209126
BLAKE2b-256 dc28ac9a290f49865869b39ce7635646de8a847a4f7a2aa4dcff64348da9ffd1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.14.0-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.0-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 1fe6bfab6a9a713c430129f1ed2b81af52e2d513e9c3d6e9d272a834fd75b376
MD5 49533695325f71fbf3193bf7dab6833c
BLAKE2b-256 45efb959fc01d6c2bbb6d392716735dd25baa489df63d82168c92a472eb2f889

See more details on using hashes here.

File details

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

File metadata

  • Download URL: qiskit_terra-0.14.0-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.0-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 087f4493f22e9b38828a5c5e823febcd94788c0b6d0a80500b207eed00498600
MD5 c74350580f5187407cce74b72e519e5b
BLAKE2b-256 5fe54c31e108f2b226f681fb39470bb5fc545cad6807de361e48f0495ed48b8b

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