From 85ff7e951009623a2dfa27eff53a47d5c1eb74f7 Mon Sep 17 00:00:00 2001
From: SP Mohanty <spmohanty91@gmail.com>
Date: Wed, 3 Jul 2019 07:33:57 +0200
Subject: [PATCH] Add instructions for setting up the conda environment

---
 docs/installation.rst | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/docs/installation.rst b/docs/installation.rst
index 854d98fe..148fe5b5 100644
--- a/docs/installation.rst
+++ b/docs/installation.rst
@@ -4,6 +4,26 @@
 Installation
 ============
 
+Software Runtime & Dependencies
+-------------------------------
+
+This is the recommended way of installation and running flatland's dependencies.
+
+* Install `Anaconda <https://www.anaconda.com/distribution/>`_ by following the instructions `here <https://www.anaconda.com/distribution/>`_
+* Create a new conda environment 
+
+.. code-block:: console
+
+    $ conda create python=3.6 --name flatland-rl
+    $ conda activate flatland-rl
+
+* Install the necessary dependencies
+
+.. code-block:: console
+
+    $ conda install -c conda-forge cairosvg pycairo
+    $ conda install -c anaconda tk  
+
 
 Stable release
 --------------
-- 
GitLab