Installation
Install from PyPI
pip install dbx-py
Install with pip
python -m pip install dbx-py
Install with uv (Recommended)
uv pip install dbx-py
Requirements
- Python: 3.8 or higher
- Platform: Windows x64 (currently tested)
- Linux x64: Planned
- macOS (Intel/Apple Silicon): Planned
Verify Installation
from dbx_py import Database
db = Database.open_in_memory()
print("DBX Python loaded successfully!")
db.close()
Virtual Environment
venv
python -m venv venv
source venv/bin/activate # Linux/macOS
venv\Scripts\activate # Windows
pip install dbx-py
conda
conda create -n dbx python=3.11
conda activate dbx
pip install dbx-py
Troubleshooting
Module Not Found
Cause: Installation failed or wrong Python environment
Solution:
# Verify installation
pip list | grep dbx-py
# Reinstall
pip uninstall dbx-py
pip install dbx-py
Import Error on Windows
Cause: Missing Visual C++ Redistributable
Solution:
- Download Microsoft Visual C++ Redistributable
- Install and restart
Version Check
pip show dbx-py
Next Steps
- Quick Start - Get started in 5 minutes
- SQL Guide - SQL usage
- API Reference - Complete API