Skip to content

Installation

To use scikit-eo it is necessary to install it in your terminal. There are two options to use its functions/classes:

1. From PyPI

scikit-eo is available on PyPI, so to install it, run this command in your terminal:

1
pip install scikeo

If you don't have pip installed, this Python installation guide can guide you through the process.

2. Installing from source

It is also possible to install the latest development version directly from the GitHub repository with:

1
pip install git+https://github.com/yotarazona/scikit-eo
This is the preferred method to install scikit-eo, as it will always install the most recent stable release.

containerizing scikit-eo

Note: It is a recommended practice to provide some instructions for isolating/containerizing scikit-eo. It would benefit their use and thus avoid that some dependencies are not compatible with others. For example, conda provides an easy solution.

1
conda create -n scikiteo python = 3.8
Then, activate the environment created

1
conda activate scikiteo
Then finally, scikit-eo can be install within this new environment using via PyPI or from the GitHub repository.