microsoft/qdk

Public

mirrored fromhttps://github.com/microsoft/qdkAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
minestarks/dev-container

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

.devcontainer/qdk-user/devcontainer.json

17lines · modecode

1// Dev container for using the QDK (Q# + Python + VS Code extension).
2// Open this in GitHub Codespaces to get started with quantum development right away.
3// For format details, see https://aka.ms/devcontainer.json.
4{
5 "name": "QDK (stable release)",
6 "image": "mcr.microsoft.com/devcontainers/python:3.13",
7 "postCreateCommand": "pip install 'qdk[all]'",
8 "customizations": {
9 "vscode": {
10 "extensions": [
11 "quantum.qsharp-lang-vscode",
12 "ms-python.python",
13 "ms-toolsai.jupyter"
14 ]
15 }
16 }
17}
18