Installation
EazyDataFix is available on PyPI. Requires Python 3.10 or later; tested with Python 3.10–3.13.
Requirements
- Python 3.10 or later (tested on 3.10, 3.11, 3.12, 3.13)
- pandas (installed automatically)
- openpyxl (only required for Excel input)
- pyarrow (only required for Parquet input, via the optional extra)
Install with pip
terminal
bash
pip install eazydatafixWith Parquet support
terminal
bash
pip install "eazydatafix[parquet]"Verify the installation
Python 3.11
>>> import eazydatafix as edf>>> edf.__version__'1.4.0'Upgrade
terminal
bash
pip install --upgrade eazydatafixTroubleshooting
If pip install fails with a dependency resolver error, install pandas separately first with pip install pandas and retry.