From c2c9317b9049d219103535f6cdcc3916d878dbee Mon Sep 17 00:00:00 2001 From: Yash Kant Date: Wed, 16 Oct 2019 21:02:14 -0400 Subject: [PATCH 1/2] Fix clone link in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0ca3902..aadbc7b 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ You can use Anaconda or Miniconda to setup this code base. Download and install ```sh # clone and download submodules -git clone https://www.github.com/yashkant/visual-chatbot.git +git clone https://www.github.com/Cloud-CV/visual-chatbot.git git submodule update init --recursive # create and activate new environment From 73b62c2116dc6cd92117aecacf8b80a1aa4d04d8 Mon Sep 17 00:00:00 2001 From: Yash Kant Date: Wed, 16 Oct 2019 21:06:57 -0400 Subject: [PATCH 2/2] Update README.md --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index aadbc7b..5c80f88 100644 --- a/README.md +++ b/README.md @@ -47,14 +47,15 @@ You can use Anaconda or Miniconda to setup this code base. Download and install ```sh # clone and download submodules git clone https://www.github.com/Cloud-CV/visual-chatbot.git -git submodule update init --recursive +cd visual-chatbot/ +git submodule init +git submodule update # create and activate new environment conda create -n vischat python=3.6.8 conda activate vischat # install the requirements of chatbot and visdial-starter code -cd visual-chatbot/ pip install -r requirements.txt ```