Getting Started with LambdaThetaMu
Learn how to setup and configure your quantum computing environment to start building with our decentralized quantum grid.
π View Full Docsπ Prerequisites
Quantum SDK
Install our SDK via npm/yarn or GitHub releases. Requires Node.js v18.
π First Steps
1. Create Project
Go to your Dashboard and create a new project to store your quantum workloads.
2. Configure SDK
// Initialize SDK import { LambdaQ } from '@lambdathetamu/q-sdk' const q = new LambdaQ({ apiKey: 'YOUR_API_KEY_HERE' })
3. Run First Circuit
q.run({ circuit: 'HZ', qubits: 1, shots: 100 }).then(data => console.log(data.results))
π Tutorials
Quantum Circuit Basics
Learn core concepts of quantum gate construction and simulation techniques in 10 minutes.
π View TutorialHybrid Workloads
Create hybrid classical-quantum pipelines for optimization and error correction.
π View TutorialNeed Help?
Find answers in our documentation or reach out to our team for assistance with quantum backend setup.
β Need Help Now?