Installing

The library can be obtained either as a package through PyPI and Conda, or built from source.

With pip

To install from PyPI using pip:

pip install datasetops

With Conda

To install the package using Conda:

conda install datasetops

Warning

The package is currently only published to PyPI, however plans for Conda are in the near future.

From source

The package can be installed from source by cloning the git repository:

git clone https://github.com/LukasHedegaard/datasetops.git

And then running pip install in the root of the folder:

pip install .

This will install the package in the current environment.

In case you wish to edit the code it may be useful to pass the editable flag to pip:

pip install -e .

This makes imports point to the local files instead of the ones installed globally. The benefit of this is that pip install does not have to be invoked manually to update files.