From f8875fb73d942873ff8457b297386b6710fe7010 Mon Sep 17 00:00:00 2001 From: Yonatan Tarazona Date: Tue, 11 Jun 2024 10:05:43 -0500 Subject: [PATCH] Update installation.md --- docs/installation.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/docs/installation.md b/docs/installation.md index e9459a3..c3eb5f7 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -22,4 +22,19 @@ It is also possible to install the latest development version directly from the 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. + +```python +conda create -n scikiteo python = 3.8 +``` +Then, activate the environment created + +```python +conda activate scikiteo +``` +Then finally, ```scikit-eo``` can be install within this new environment using via PyPI or from the GitHub repository. +