From e917b3e5ae3d15d81b7f364f73c575a337de6a69 Mon Sep 17 00:00:00 2001
From: Joachim Wolff <wolffj@informatik.uni-freiburg.de>
Date: Mon, 1 Mar 2021 08:52:00 +0100
Subject: [PATCH] Update README.rst

---
 README.rst | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

diff --git a/README.rst b/README.rst
index 8f915a9a..b8699491 100644
--- a/README.rst
+++ b/README.rst
@@ -83,7 +83,25 @@ The easiest way to install HiCExplorer is using `BioConda <http://bioconda.githu
 ::
 
    $ conda install hicexplorer -c bioconda -c conda-forge
+   
+   
+We highly recommend conda environments to separate software from each other. With it, different versions of dependencies do not interfere with each other.
 
+::
+
+   $ conda create --name hicexplorer hicexplorer=3.6 python=3.8 -c bioconda -c conda-forge
+   $ conda activate hicexplorer
+   
+To deactivate the environment use:
+
+::
+
+   $ conda deactivate
+   
+
+To learn more about conda and environments, please consider the following `documentation <https://docs.conda.io/projects/conda/en/latest/user-guide/getting-started.html#>`_.
+   
+   
 
 Install by cloning this repository
 __________________________________