From aa1df8c9e1144bac83e2fcf680c63feeb7b849fc Mon Sep 17 00:00:00 2001
From: JasonJiazhiZhang <21229070+JasonJiazhiZhang@users.noreply.github.com>
Date: Wed, 5 Jun 2019 17:22:50 -0700
Subject: [PATCH] Fix README for gym installation (#104)

* Update main README to properly install gym

* Update baseline README for gym install
---
 README.md                   | 1 +
 habitat_baselines/README.md | 1 +
 2 files changed, 2 insertions(+)

diff --git a/README.md b/README.md
index a7e66fa9f..1144b7a27 100644
--- a/README.md
+++ b/README.md
@@ -57,6 +57,7 @@ pip install -e .
 The command above will install only habitat core API. To include habitat_baselines along with all additional requirements, use the command below instead:
 ```bash
 cd habitat-api
+pip install -r requirements.txt
 python setup.py develop --all # install habitat and habitat_baselines
 ```
 2. Install `habitat-sim` from [github repo](https://github.com/facebookresearch/habitat-sim).
diff --git a/habitat_baselines/README.md b/habitat_baselines/README.md
index 57a2a7298..920f3d987 100644
--- a/habitat_baselines/README.md
+++ b/habitat_baselines/README.md
@@ -4,6 +4,7 @@ baselines
 
 The `habitat_baselines` sub-package is NOT included upon installation by default. To install `habitat_baselines`, use the following command instead:
 ```bash
+pip install -r requirements.txt
 python setup.py develop --all
 ```
 This will also install additional requirements for each sub-module in `habitat_baselines/`, which are specified in `requirements.txt` files located in the sub-module directory.
-- 
GitLab