Installation

pyrolite is available on PyPi, and can be downloaded with pip:

pip install --user pyrolite

Note

With pip, a user-level installation is generally recommended (i.e. using the --user flag), especially on systems which have a system-level installation of Python (including *.nix, WSL and MacOS systems); this can avoid some permissions issues and other conflicts. For detailed information on other pip options, see the relevant docs. pyrolite is not yet packaged for Anaconda, and as such conda install pyrolite will not work.

Upgrading pyrolite

New versions of pyrolite are released frequently. You can upgrade to the latest edition on PyPi using the --upgrade flag:

pip install --upgrade pyrolite

Optional Dependencies

Optional dependencies (dev, skl, spatial, db, stats, docs) can be specified during pip installation. For example:

pip install --user pyrolite[stats]

pip install --user pyrolite[dev,docs]