Microsoft Quantum Development Kit for Chemistry (QDK/Chemistry)
QDK/Chemistry is an open-source C++ and Python package within the Microsoft Quantum Development Kit (QDK). It provides an end-to-end toolkit for quantum chemistry: from molecular setup and classical electronic structure through quantum algorithm execution and simulation. Designed as both a development platform and a composable framework, QDK/Chemistry enables researchers to assemble modular quantum–classical pipelines, explore strongly correlated systems, and advance toward practical quantum chemistry applications on near-term and fault-tolerant quantum computers.
Overview
QDK/Chemistry bridges classical computational chemistry with quantum computing by providing every stage of the quantum applications pipeline in a single, modular toolkit:
- Quantum algorithms: a growing collection of chemistry-aware quantum algorithms, with composable building blocks for constructing higher-level quantum workflows
- Classical electronic structure: production-quality classical methods that generate the high-quality inputs quantum algorithms require
- Composable architecture: a plugin system that lets users assemble custom pipelines from interchangeable components, mixing native high-performance C++ backends with established community packages
- Multiple quantum backends: execute circuits on a variety of simulators through a unified interface that decouples algorithm development from backend selection
Documentation
- Website: The full documentation is hosted online
- Quickstart: A step-by-step walkthrough from installation to a complete end-to-end example is available in the Quickstart guide
- C++ API: Headers in
cpp/include/contain comprehensive Doxygen documentation, also published in the C++ API reference - Python API: All methods include detailed docstrings with Parameters, Returns, Raises, and Examples sections, also published in the Python API reference
- Examples: See the
examples/directory in this repository, or the Tutorials for guided, end-to-end usage examples - Reference data and companion materials: Curated simulation datasets, molecular benchmarks, and related assets are available at microsoft/qdk-chemistry-data
Files under .github/skills/ provide development-time guidance for coding
agents working on the repository. They are not part of the installed package or
its runtime behavior.
Installing
Linux / macOS:
python3 -m venv venv && source venv/bin/activate
python3 -m pip install 'qdk-chemistry[all]'
Windows (PowerShell):
python -m venv venv; .\venv\Scripts\Activate.ps1
python -m pip install "qdk-chemistry[all]"
The [all] extra pulls in all optional dependencies so that examples and tests work without chasing missing packages. For other installation methods (Dev Container, building from source) and platform-specific notes, see INSTALL.md.
On Windows arm64, dependencies without native wheels, including MCP, are omitted from [all].
Prebuilt wheels are published for Linux (x86_64, arm64), macOS (Apple Silicon), and Windows (x86_64, arm64). On Windows, WSL is supported as well. See Notes for Windows users for Windows-specific caveats.
For a complete, end-to-end walkthrough from installation through a full quantum chemistry pipeline, see the Quickstart guide and the examples/ directory.
Copilot Plugin
QDK Chemistry publishes a Copilot plugin containing skills and an MCP server configuration. Register the repository marketplace, then run the plugin installer from the virtual environment containing QDK Chemistry:
python -m pip install 'qdk-chemistry[mcp]'
copilot plugin marketplace add https://github.com/microsoft/qdk-chemistry.git
qc plugin install qdk-chemistry@qdk-chemistry
Installing the mcp extra automatically activates the server endpoint, tool
registration, workspace middleware, and available MCP Apps visualizations.
The qc CLI remains available without this extra.
With no target directory, Copilot installs the plugin for the current user and QDK Chemistry pins its MCP command to that virtual environment. A local plugin directory is also accepted; QDK Chemistry registers its ancestor marketplace in the same Copilot scope before installation. Copilot repository subdirectory specs are accepted directly:
qc plugin install ./copilot-plugins/qdk-chemistry
qc plugin install OWNER/REPO:copilot-plugins/qdk-chemistry
To configure one workspace instead, pass its root. QDK Chemistry copies the
fetched skills into .github, merges its MCP server into
.vscode/mcp.json and .github/mcp.json, and keeps fetch/update state beneath
the ignored .qdk_chem directory:
qc plugin install ./copilot-plugins/qdk-chemistry \
--target-dir /path/to/workspace
Update through the same CLI so the virtual-environment binding is restored
after Copilot refreshes the plugin files. Pass the same --target-dir for a
workspace installation:
qc plugin update qdk-chemistry
qc plugin update --all
qc plugin rebind qdk-chemistry
VS Code discovers user plugins installed by Copilot CLI and workspace assets
written by --target-dir. The plugin supplies:
- QDK Chemistry overview, MCP, coding, remote-execution, and visualization skills; and
- the
qdk_chemistryMCP server configuration.
Plugin MCP processes start in the installed plugin directory. Call
bind_workspace before any other QDK Chemistry tool. It uses a single
client-provided file root when available; otherwise pass the active workspace as
an absolute workspace_root. Plugin-launched servers reject other tool calls
until binding succeeds and cannot be rebound to another workspace.
Skills provide tested domain knowledge: tool references, workflow recipes, parameter guidance, and common pitfalls.
Telemetry
By default, this library collects anonymous usage and performance data to help improve the user experience and product quality. The telemetry implementation can be found in telemetry.py and all telemetry events are defined in telemetry_events.py.
To disable telemetry, set the environment variable QSHARP_PYTHON_TELEMETRY to one of the following values: none, disabled, false, or 0. For example:
# Linux / macOS
export QSHARP_PYTHON_TELEMETRY='false'
# Windows (PowerShell)
$env:QSHARP_PYTHON_TELEMETRY = 'false'
Alternatively, telemetry can be disabled within a python script by including the following at the top of the .py file:
import os
os.environ["QSHARP_PYTHON_TELEMETRY"] = "disabled"
If you have any questions about the library's use of Telemetry, please use the Discussion forum.
Citing QDK/Chemistry
If you use QDK/Chemistry in your work, please cite the following paper:
N. A. Baker, B. Bilodeau, C. Chen, Y. Chen, M. Eckhoff, A. Efimovskaya, P. Gasparotto, P. van Gerwen, R. Gong, K. Hoang, Z. Hooshmand, A. J. Jenkins, C. S. N. Johnston, R. R. Li, J. Liang, H. Liu, A. Mills, M. Mörchen, G. Nishibuchi, C. Sun, B. Ticehurst, M. Troyer, J. P. Unsleber, S. Wernli, D. B. Williams-Young, and B. Zhang, "QDK/Chemistry: A Modular Toolkit for Quantum Chemistry Applications," arXiv:2601.15253 (2026).
Contributing
There are many ways in which you can participate in this project, for example:
- Submit bugs and feature requests, and help us verify as they are checked in
- Review source code changes
- Review the documentation and make pull requests for anything from typos to additional and new content
If you are interested in fixing issues and contributing directly to the code base, please see the document How to Contribute.
Support
For help and questions about using this project, please see SUPPORT.
Code of Conduct
This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.
License
Copyright (c) Microsoft Corporation. All rights reserved.
Licensed under the MIT license.
Trademarks
This project may contain trademarks or logos for projects, products, or services. Authorized use of Microsoft trademarks or logos is subject to and must follow Microsoft’s Trademark & Brand Guidelines. Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship. Any use of third-party trademarks or logos is subject to those third-parties’ policies.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file qdk_chemistry-2.2.0-cp314-cp314-win_arm64.whl.
File metadata
- Download URL: qdk_chemistry-2.2.0-cp314-cp314-win_arm64.whl
- Upload date:
- Size: 51.6 MB
- Tags: CPython 3.14, Windows ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via:
RestSharp/106.13.0.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7801b7910d00ab39c1ad8ec332c3ae65c73abb065400ed9bc12fbfa1b43f5366
|
|
| MD5 |
e7f3474d9afe48bfd13ba5a515827f8d
|
|
| BLAKE2b-256 |
db0542519bd564bf127a761ce18fddfa3ec803eb246dd11c32bd4d953a36ec8a
|
File details
Details for the file qdk_chemistry-2.2.0-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: qdk_chemistry-2.2.0-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 52.4 MB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via:
RestSharp/106.13.0.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5102e042ba959e8701ff152dcf54e8e926a641f36ad41004a5c83e5843d239ca
|
|
| MD5 |
c76ded8d57b7e3acd66af64a6ed58ffd
|
|
| BLAKE2b-256 |
35cf77233ae11267ec90684b229711a40914494c892cc161fafc9295810ec4ad
|
File details
Details for the file qdk_chemistry-2.2.0-cp314-cp314-manylinux_2_39_x86_64.whl.
File metadata
- Download URL: qdk_chemistry-2.2.0-cp314-cp314-manylinux_2_39_x86_64.whl
- Upload date:
- Size: 58.3 MB
- Tags: CPython 3.14, manylinux: glibc 2.39+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via:
RestSharp/106.13.0.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8d3fd5472b360ebb0e83bd5485b39568363ebd6b7dc5ee717401a0631bc0d8f5
|
|
| MD5 |
38b430da8668191619a5d677ed0911df
|
|
| BLAKE2b-256 |
7e2b05bd16c48be26f3af3ea42d96a5b198971de60bf1c5c00aabc7c2ff0a8bf
|
File details
Details for the file qdk_chemistry-2.2.0-cp314-cp314-manylinux_2_39_aarch64.whl.
File metadata
- Download URL: qdk_chemistry-2.2.0-cp314-cp314-manylinux_2_39_aarch64.whl
- Upload date:
- Size: 55.1 MB
- Tags: CPython 3.14, manylinux: glibc 2.39+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via:
RestSharp/106.13.0.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
30bc35ecdb1863252ad15aaecadc2a99682d477130c6c4b9e5593566d062e796
|
|
| MD5 |
7cbeaba44c10ead970fbfd6c1e3ca0c0
|
|
| BLAKE2b-256 |
e65ad1117c55cd4c5a213bad60891b042949d14a9a87b79e2cf3a8c62936e30f
|
File details
Details for the file qdk_chemistry-2.2.0-cp314-cp314-macosx_26_0_arm64.whl.
File metadata
- Download URL: qdk_chemistry-2.2.0-cp314-cp314-macosx_26_0_arm64.whl
- Upload date:
- Size: 50.9 MB
- Tags: CPython 3.14, macOS 26.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via:
RestSharp/106.13.0.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ada4a0482eb64c6a539ac67389ed8d82addcabd8d36cba5aac3b83c6b273cf07
|
|
| MD5 |
3ab50bde24f0c1d30916d9a70ec6e363
|
|
| BLAKE2b-256 |
831f8f62ef4cc1fcb7f8bbc0735e4b38f7f6e9246cf5df51c6178a0adc4b09fb
|
File details
Details for the file qdk_chemistry-2.2.0-cp313-cp313-win_arm64.whl.
File metadata
- Download URL: qdk_chemistry-2.2.0-cp313-cp313-win_arm64.whl
- Upload date:
- Size: 50.6 MB
- Tags: CPython 3.13, Windows ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via:
RestSharp/106.13.0.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
45a8efb10354db1f420e085553d5755e2f08a1465a565f935cccbf3ac5348eee
|
|
| MD5 |
fc8b4e88db9af98da4ae64af448b7abc
|
|
| BLAKE2b-256 |
f6b60a8fce91fb22c6ae2b0293c9c7ddbc15891f40d0af2e295e4072cf99692b
|
File details
Details for the file qdk_chemistry-2.2.0-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: qdk_chemistry-2.2.0-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 52.4 MB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via:
RestSharp/106.13.0.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
32be2c83151d2778388f8a20da86795e82015b6de68a68fb362e645a84058a03
|
|
| MD5 |
6fb01e97ee3c6e9831366e0042cc5b93
|
|
| BLAKE2b-256 |
cbe5f05363f93ebaf592a1e1d89518ad71d62f7d9f5ae95598b940a77611109b
|
File details
Details for the file qdk_chemistry-2.2.0-cp313-cp313-manylinux_2_39_x86_64.whl.
File metadata
- Download URL: qdk_chemistry-2.2.0-cp313-cp313-manylinux_2_39_x86_64.whl
- Upload date:
- Size: 58.3 MB
- Tags: CPython 3.13, manylinux: glibc 2.39+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via:
RestSharp/106.13.0.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
64850c526aca5c33101af356438d08fe652d4c4ff31083280920de6a039e3d63
|
|
| MD5 |
0e198b98c481ebb8819ad5e9cd9be10c
|
|
| BLAKE2b-256 |
328676b2f07ee843128bf2bcc598e56b38e076aab74990e0aeefc06faf37b42e
|
File details
Details for the file qdk_chemistry-2.2.0-cp313-cp313-manylinux_2_39_aarch64.whl.
File metadata
- Download URL: qdk_chemistry-2.2.0-cp313-cp313-manylinux_2_39_aarch64.whl
- Upload date:
- Size: 55.1 MB
- Tags: CPython 3.13, manylinux: glibc 2.39+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via:
RestSharp/106.13.0.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e4afa9e08738954662b8dda3af8cf2c3000211cd4071881e0676080a03f19e82
|
|
| MD5 |
169bcb4833dc3aff95e503ffaf77fea7
|
|
| BLAKE2b-256 |
b26f4a75a00e545057b09638828f06f8811072ce7fbfd237adf56d21fb23c907
|
File details
Details for the file qdk_chemistry-2.2.0-cp313-cp313-macosx_26_0_arm64.whl.
File metadata
- Download URL: qdk_chemistry-2.2.0-cp313-cp313-macosx_26_0_arm64.whl
- Upload date:
- Size: 50.9 MB
- Tags: CPython 3.13, macOS 26.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via:
RestSharp/106.13.0.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ead94dd4751661103622ffadd1167964df5e3ce741740937505340b7394bb0fb
|
|
| MD5 |
d04fc5d181e4677eb3bf6c1634e22547
|
|
| BLAKE2b-256 |
cc77fd39132c6b55bd88bc93f783a4f2b8b042d665c7d17a4461d8c5139bed2d
|
File details
Details for the file qdk_chemistry-2.2.0-cp312-cp312-win_arm64.whl.
File metadata
- Download URL: qdk_chemistry-2.2.0-cp312-cp312-win_arm64.whl
- Upload date:
- Size: 50.6 MB
- Tags: CPython 3.12, Windows ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via:
RestSharp/106.13.0.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8a5d47f620465bb3a5e57e2f721f419cb10e6b86be6ad80ab5dcc6b68a159e20
|
|
| MD5 |
0fd2db0d52bee993d3cd485234948149
|
|
| BLAKE2b-256 |
db1c23d7258394bfb2716aa76fb4c6886910b4b1b4667120517dc04147f780f1
|
File details
Details for the file qdk_chemistry-2.2.0-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: qdk_chemistry-2.2.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 52.4 MB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via:
RestSharp/106.13.0.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b9c413eee54487eef441d8c7aff8ee922904b7e6390c2030970ac81578182eec
|
|
| MD5 |
024ba18980bbad87c0a77b3d8f5e1dc9
|
|
| BLAKE2b-256 |
ab1d370746f7af3094a82489db35a6069bf70aa9b286e90d96745660c73cadd6
|
File details
Details for the file qdk_chemistry-2.2.0-cp312-cp312-manylinux_2_39_x86_64.whl.
File metadata
- Download URL: qdk_chemistry-2.2.0-cp312-cp312-manylinux_2_39_x86_64.whl
- Upload date:
- Size: 58.3 MB
- Tags: CPython 3.12, manylinux: glibc 2.39+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via:
RestSharp/106.13.0.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ea64c08c9e2ca14b0ead821b0f094a8ca273beacc09b2a668e5df496a9eb0150
|
|
| MD5 |
ba980128ad144e649c0b748c00595874
|
|
| BLAKE2b-256 |
c3268beb9e2493da77cd1833242d6a643c50c65635a548fbb7d1a3925aa7d564
|
File details
Details for the file qdk_chemistry-2.2.0-cp312-cp312-manylinux_2_39_aarch64.whl.
File metadata
- Download URL: qdk_chemistry-2.2.0-cp312-cp312-manylinux_2_39_aarch64.whl
- Upload date:
- Size: 55.1 MB
- Tags: CPython 3.12, manylinux: glibc 2.39+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via:
RestSharp/106.13.0.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
349ed47f200749229db45e1c4cb4b1345a9de877bee86ab8ae1bb6df28cba796
|
|
| MD5 |
04faceca50408f122609713bbc87b10a
|
|
| BLAKE2b-256 |
4575b06cfc64d215e65bf728722e7b6578b76e7b22629d49966a5be1d5bc7195
|
File details
Details for the file qdk_chemistry-2.2.0-cp312-cp312-macosx_26_0_arm64.whl.
File metadata
- Download URL: qdk_chemistry-2.2.0-cp312-cp312-macosx_26_0_arm64.whl
- Upload date:
- Size: 50.9 MB
- Tags: CPython 3.12, macOS 26.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via:
RestSharp/106.13.0.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6ebae53ce46ce6dd046593574b5a63fd9a60c0e978bbc1525c45f97b5e2805e2
|
|
| MD5 |
d94daebb1c2ed577dd4dc799e93d8b86
|
|
| BLAKE2b-256 |
cac5df7c283de267f8d62d8cdfe5a6710b7925ef008e91d4509d7510d5e024ea
|
File details
Details for the file qdk_chemistry-2.2.0-cp311-cp311-win_arm64.whl.
File metadata
- Download URL: qdk_chemistry-2.2.0-cp311-cp311-win_arm64.whl
- Upload date:
- Size: 50.6 MB
- Tags: CPython 3.11, Windows ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via:
RestSharp/106.13.0.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9dc0aec06df18b40baf4c751b04ac36bc5854e87e37370f7a13fbc9f8ca37164
|
|
| MD5 |
b648f08bb0218b2f5fc795938c290cd3
|
|
| BLAKE2b-256 |
5e910beaeb98bfcaeea140f1d7b12e1d58aa4e7fbb9f55adbc6f16bdc911b79e
|
File details
Details for the file qdk_chemistry-2.2.0-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: qdk_chemistry-2.2.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 52.4 MB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via:
RestSharp/106.13.0.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d41644605a229eac7bbd4b3c5d4c089783260a0979034405f363a7d9141e805a
|
|
| MD5 |
2d28710c47c65f24e9d6b7db4afd950c
|
|
| BLAKE2b-256 |
69ae6c73aeae01cc365f427e855c70faf97b24082f4b613c96eeba5e843ad0cb
|
File details
Details for the file qdk_chemistry-2.2.0-cp311-cp311-manylinux_2_39_x86_64.whl.
File metadata
- Download URL: qdk_chemistry-2.2.0-cp311-cp311-manylinux_2_39_x86_64.whl
- Upload date:
- Size: 58.3 MB
- Tags: CPython 3.11, manylinux: glibc 2.39+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via:
RestSharp/106.13.0.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
44f17265c09487ee25c6f358ead585cc07bd2ac7340a59fd5e331766b63715e5
|
|
| MD5 |
a87b83251b94e10bf1e40c8394ea0da5
|
|
| BLAKE2b-256 |
2ed855441ff2a92ed09ab0923a8f55c1b7a1dd202647ddfc628a2ab98f0603f4
|
File details
Details for the file qdk_chemistry-2.2.0-cp311-cp311-manylinux_2_39_aarch64.whl.
File metadata
- Download URL: qdk_chemistry-2.2.0-cp311-cp311-manylinux_2_39_aarch64.whl
- Upload date:
- Size: 55.1 MB
- Tags: CPython 3.11, manylinux: glibc 2.39+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via:
RestSharp/106.13.0.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
82400abb8ad9ce3f40bb5cf9273dad409405d5b803565047b77de791273c186e
|
|
| MD5 |
63be88a887ab30549c71769e2474cc0a
|
|
| BLAKE2b-256 |
8e0ae3b48f1308abae3328533530b24661ee8021e2bf1d30aa59efa93fc73eca
|
File details
Details for the file qdk_chemistry-2.2.0-cp311-cp311-macosx_26_0_arm64.whl.
File metadata
- Download URL: qdk_chemistry-2.2.0-cp311-cp311-macosx_26_0_arm64.whl
- Upload date:
- Size: 50.8 MB
- Tags: CPython 3.11, macOS 26.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via:
RestSharp/106.13.0.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
95ceb870def5c4d7afad2a9d3bde795d8dfbc8cbf6443a3f96435fc148848dbf
|
|
| MD5 |
62a672c64145b92d2aa698e165948cdc
|
|
| BLAKE2b-256 |
02912a0ab52ebe46488e3018ef47f10a1c14048be4dac2bb51aa21c1e32fc104
|
File details
Details for the file qdk_chemistry-2.2.0-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: qdk_chemistry-2.2.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 52.4 MB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via:
RestSharp/106.13.0.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
126b4e1b8d6f7388f04445c02cf2a0001c36c623cb0c399aeeaa1c6b2b60bee1
|
|
| MD5 |
e16458fcca16b27093d96853f17b1b5c
|
|
| BLAKE2b-256 |
39a0d0f49b1a041b8985c5cf8084b8caa7ed27c73ccdd442653dc2743ed40686
|
File details
Details for the file qdk_chemistry-2.2.0-cp310-cp310-manylinux_2_39_x86_64.whl.
File metadata
- Download URL: qdk_chemistry-2.2.0-cp310-cp310-manylinux_2_39_x86_64.whl
- Upload date:
- Size: 58.3 MB
- Tags: CPython 3.10, manylinux: glibc 2.39+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via:
RestSharp/106.13.0.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
407f63886e2195d77058e61615fc22bc82c9833def0e109ad8d3a7a5f41f9ee0
|
|
| MD5 |
930346b861020c18c05c4265d1aeb778
|
|
| BLAKE2b-256 |
73bd96674f353d17c0af6e96f143e6a806ac53c2bc3327fed996cbffcf222188
|
File details
Details for the file qdk_chemistry-2.2.0-cp310-cp310-manylinux_2_39_aarch64.whl.
File metadata
- Download URL: qdk_chemistry-2.2.0-cp310-cp310-manylinux_2_39_aarch64.whl
- Upload date:
- Size: 55.1 MB
- Tags: CPython 3.10, manylinux: glibc 2.39+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via:
RestSharp/106.13.0.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c200bb3ea0a044f7ff02665f4ef2d08d0bd68b227f2becae0034507f8dcb55b9
|
|
| MD5 |
98e40caf3120209caaee8594ff7f49c4
|
|
| BLAKE2b-256 |
eade7c792dcaace145379cd779ac4362be6bd002c04cd2450d0674a0a3ebfa4c
|
File details
Details for the file qdk_chemistry-2.2.0-cp310-cp310-macosx_26_0_arm64.whl.
File metadata
- Download URL: qdk_chemistry-2.2.0-cp310-cp310-macosx_26_0_arm64.whl
- Upload date:
- Size: 50.8 MB
- Tags: CPython 3.10, macOS 26.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via:
RestSharp/106.13.0.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fb1210a2c1d1c5a525d931ddf587ffeb251a8628ffa2167134e914f3c8e9bdc7
|
|
| MD5 |
26c14ed4e97d029c9e188fc6249479a5
|
|
| BLAKE2b-256 |
d3f4d5474c61dcbd32f99933110445f584467a6b9e827940edc9b695b01ccccf
|