Installing CIECPLib

Conda

Installing CIECPLib with Conda
conda install -c conda-forge ciecplib

Pip

Installing CIECPLib with Pip
$ python -m pip install ciecplib

Default pip install doesn’t include Kerberos Auth support

By default pip install ciecplib does not bundle Kerberos auth support that is optional as of requests-ecp 0.3.0.

The ciecplib[kerberos] extra can be used to automatically install requests-ecp[kerberos]:

python -m pip install ciecplib[kerberos]

This does not ensure that a working version of the underlying GSSAPI is installed (e.g, via MIT Kerberos). If you need Kerberos auth, and need to install GSSAPI itself on your system, it is recommended that you use Conda to install `ciecplib`.