Installation¶
Requirements¶
- Python 3.10+
- Rust 1.75+ (for building from source)
Install from PyPI¶
Install from Source¶
If you need to build from source (e.g., for development or customization):
1. Clone the Repository¶
2. Create Virtual Environment¶
3. Build Rust Core¶
# Build the Rust workspace
cargo build --release
# Install the Python extension (PyO3 bindings)
cd crates/oxyde-core-py
pip install maturin
maturin develop --release
4. Install Python Package¶
Verify Installation¶
Database Drivers¶
Oxyde uses SQLx under the hood. Database drivers are included — no additional installation required.
| Database | Connection URL |
|---|---|
| PostgreSQL | postgresql://user:pass@host:5432/db |
| SQLite | sqlite:///path/to/file.db or sqlite:///:memory: |
| MySQL | mysql://user:pass@host:3306/db |
Next Steps¶
- Quick Start — Build your first app in 5 minutes
- First Project — Complete tutorial with a real example