# Installation `udlai` can be installed either from `PyPI` or `conda-forge`. ```sh pip install udlai ``` Or ```sh conda install -c conda-forge udlai # or alternatively mamba install -c conda-forge udlai ``` ## From git ```sh pip install git+https://github.com/udl-ai/udlai.git ``` ## From source You can also install the package from source. Ensure you hae the following dependencies: ```sh - pandas - requests ``` Then clone the repository, and install the package. ```sh cd udlai pip install . ```