Skip to content

Commit

Permalink
Added conda install instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
PauBadiaM committed Sep 5, 2023
1 parent a2b4f45 commit 5babf3d
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 5 deletions.
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,17 @@ If you have any question or problem do not hesitate to open an [issue](https://g

## Installation

To install the latest stable version run:
`decoupler` can be installed from `pip` (lightweight installation)::
```
pip install decoupler
```

Alternatively, to stay up-to-date with the newest version, run:
It can also be installed from `conda` and `mamba` (this includes extra dependencies):
```
mamba create -n=decoupler -c conda-forge -c bioconda decoupler
```

Alternatively, to stay up-to-date with the newest unreleased version, install from source:
```
pip install git+https://github.com/saezlab/decoupler-py.git
```
Expand Down
15 changes: 12 additions & 3 deletions docs/source/installation.rst
Original file line number Diff line number Diff line change
@@ -1,20 +1,29 @@
Installation
============

**decoupler** requires Python version >= 3.8 to run.
``decoupler`` requires Python version >= 3.8 to run.

PyPI
----
**decoupler** is also available on PyPI:
It can be installed from ``pip`` (lightweight installation):

.. code-block:: console
pip install decoupler
Conda
-----

It can also be installed from ``conda`` and ``mamba`` (this includes extra dependencies):

.. code-block:: console
mamba create -n=decoupler -c conda-forge -c bioconda decoupler
Development Version
-------------------

To stay up-to-date with the newest version, run:
To stay up-to-date with the newest unreleased version, run:

.. code-block:: console
Expand Down

0 comments on commit 5babf3d

Please sign in to comment.