From 938793ba838cb02cc8ffdd45388bfdf515930910 Mon Sep 17 00:00:00 2001 From: Yibing Liu Date: Tue, 21 Nov 2017 13:35:42 +0800 Subject: [PATCH 1/2] update setup in readme --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 27dede48a..0ba9b86e3 100644 --- a/README.md +++ b/README.md @@ -31,8 +31,9 @@ To avoid the trouble of environment setup, [running in docker container](#runnin ### Setup ```bash -git clone https://github.com/PaddlePaddle/models.git -cd models/deep_speech_2 +sudo apt-get install -y pkg-config libflac-dev libogg-dev libvorbis-dev swig +git clone https://github.com/PaddlePaddle/DeepSpeech.git +cd DeepSpeech sh setup.sh ``` From b21e68a4d4a827abf72aebb6c43b315ce18ddfb2 Mon Sep 17 00:00:00 2001 From: Yibing Liu Date: Tue, 21 Nov 2017 16:55:12 +0800 Subject: [PATCH 2/2] add more info in the setup section --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 0ba9b86e3..08a3afa37 100644 --- a/README.md +++ b/README.md @@ -29,9 +29,15 @@ To avoid the trouble of environment setup, [running in docker container](#runnin - PaddlePaddle the latest version (please refer to the [Installation Guide](https://github.com/PaddlePaddle/Paddle#installation)) ### Setup +- Make sure these libraries or tools installed: `pkg-config`, `flac`, `ogg`, `vorbis` and `swig`, e.g. installing them via `apt-get`: ```bash sudo apt-get install -y pkg-config libflac-dev libogg-dev libvorbis-dev swig +``` + +- Run the setup script for the remaining dependencies + +```bash git clone https://github.com/PaddlePaddle/DeepSpeech.git cd DeepSpeech sh setup.sh