Installation
Requirements
Python 3.8 or higher
NumPy
Pandas
SciPy
Scikit-learn
Statsmodels
Basic Installation
Install HypEx using pip:
pip install hypex
Development Installation
For development, clone the repository and install in editable mode:
git clone https://github.com/sb-ai-lab/HypEx.git
cd HypEx
pip install -e .
Optional Dependencies
For additional functionality, install with extras:
# For CatBoost support
pip install hypex[cat]
# For LightGBM support
pip install hypex[lgbm]
# All extras
pip install hypex[all]