Install from GitHub
Use pip with the repository URL:
python -m pip install git+https://github.com/mandelreouven2002/RelPyDB.git
Note: If you use a virtual environment, activate it before running this command.
Installation
RelPyDB is installed directly from GitHub. PyPI publication is planned for a future release.
Use pip with the repository URL:
python -m pip install git+https://github.com/mandelreouven2002/RelPyDB.git
Best practice for any Python project:
# Create and activate a virtual environment
python -m venv .venv
source .venv/bin/activate # macOS / Linux
.venv\Scripts\activate # Windows
# Install RelPyDB
pip install git+https://github.com/mandelreouven2002/RelPyDB.git
Run this one-liner to confirm RelPyDB imported correctly:
python -c "from relpy import RelPy; db = RelPy(); print('RelPyDB ready')"
RelPyDB readyRelPyDB's core has no required dependencies beyond the Python standard library. Some export functions require optional packages:
| Feature | Package | Install |
|---|---|---|
to_pandas | pandas | pip install pandas |
to_numpy | numpy | pip install numpy |
| Encrypted columns | cryptography | pip install cryptography |
Calling an export function without its package raises a descriptive ImportError.