Skip to content

Installation

Requirements

Python 3.9 or later is required. ECUtils has no external dependencies.

Install from PyPI

pip install ecutils

Install from Source

Clone the repository and install:

git clone https://github.com/isakruas/ecutils.git
cd ecutils
pip install .

For development (editable install):

pip install -e .

Verify Installation

import ecutils
print(ecutils.__version__)  # 2.0.0

Upgrade

pip install --upgrade ecutils