Installation

Install from PyPI

pip install dbx-py

Install with pip

python -m pip install dbx-py
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:

  1. Download Microsoft Visual C++ Redistributable
  2. Install and restart

Version Check

pip show dbx-py

Next Steps


Copyright © 2026 ByteLogicCore. MIT OR Apache-2.0 License.

This site uses Just the Docs, a documentation theme for Jekyll.