Skip to content

Commit

Permalink
Update installation.md
Browse files Browse the repository at this point in the history
  • Loading branch information
yotarazona committed Jun 11, 2024
1 parent 802a013 commit f8875fb
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

<!-- #endregion -->

0 comments on commit f8875fb

Please sign in to comment.