Installation#

Requirements#

  • Python >= 3.10

  • Polars >= 0.18.0

Installing from PyPI#

The easiest way to install Gators is via pip:

pip install gators

Installing from Source#

To install the latest development version:

git clone https://github.com/paypal/gators.git
cd gators
pip install -e .

For development (includes testing dependencies):

pip install -e ".[dev]"

Verifying Installation#

To verify that Gators is installed correctly:

import gators
print(gators.__version__)

You should see the version number printed without any errors.

Dependencies#

Gators automatically installs the following core dependencies:

  • polars - High-performance DataFrame library

  • numpy - Numerical computing

  • scikit-learn - For sklearn-compatible API

Optional dependencies for specific features:

  • holidays - For holiday feature generation

  • pytest - For running tests (development only)