Getting Started¶
Welcome to QuantSDK! This guide will get you up and running with quantum computing in under 10 minutes.
What is QuantSDK?¶
QuantSDK is a framework-agnostic quantum computing SDK that lets you write quantum circuits once and run them on any backend — local simulators, IBM Quantum, IonQ, or GPU-accelerated devices.
import quantsdk as qs
circuit = qs.Circuit(2).h(0).cx(0, 1).measure_all()
result = qs.run(circuit, shots=1000)
print(result.counts) # {'00': 498, '11': 502}
Quick Navigation¶
-
Install QuantSDK and optional backends in one command.
-
Build and run your first quantum circuit in 5 minutes.
-
Deep dive into building circuits with the fluent API.
-
Run circuits on IBM Quantum and other real QPUs.
Prerequisites¶
- Python 3.10+ (3.12 recommended)
- Basic familiarity with Python
- No quantum computing knowledge required!
Learning Path¶
| Step | Guide | Time |
|---|---|---|
| 1 | Installation | 2 min |
| 2 | Quickstart | 5 min |
| 3 | First Circuit | 10 min |
| 4 | Real Hardware | 10 min |
| 5 | Tutorials | 30+ min |