diff --git a/README.md b/README.md index 9b48984427743e5245f31e8c76038727f7900e00..d60d77ba5f4a8a1ace66d20ac63b003dadfa3dcf 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ pip install paddlepaddle-gpu==0.13 - Make sure these libraries or tools installed: `pkg-config`, `flac`, `ogg`, `vorbis`, `boost` and `swig`, e.g. installing them via `apt-get`: ```bash -sudo apt-get install -y pkg-config libflac-dev libogg-dev libvorbis-dev libboost-dev swig +sudo apt-get install -y pkg-config libflac-dev libogg-dev libvorbis-dev libboost-dev swig python-dev ``` - Run the setup script for the remaining dependencies @@ -124,7 +124,7 @@ To perform z-score normalization (zero-mean, unit stddev) upon audio features, w python tools/compute_mean_std.py \ --num_samples 2000 \ --specgram_type linear \ ---manifest_paths data/librispeech/manifest.train \ +--manifest_path data/librispeech/manifest.train \ --output_path data/librispeech/mean_std.npz ``` diff --git a/README_cn.md b/README_cn.md index f26c5d9a9cbb45888a4d64e8300fd37b19d5a5f7..2456a9e7986275b6197d2cc2f6318ee372231631 100644 --- a/README_cn.md +++ b/README_cn.md @@ -35,7 +35,7 @@ pip install paddlepaddle-gpu==0.13 - 请确保以下库或工具已安装完毕:`pkg-config`, `flac`, `ogg`, `vorbis`, `boost` 和 `swig`, 如可以通过`apt-get`安装: ```bash -sudo apt-get install -y pkg-config libflac-dev libogg-dev libvorbis-dev libboost-dev swig +sudo apt-get install -y pkg-config libflac-dev libogg-dev libvorbis-dev libboost-dev swig python-dev ``` - 运行脚本安装其余的依赖项 @@ -124,7 +124,7 @@ sh setup.sh python tools/compute_mean_std.py \ --num_samples 2000 \ --specgram_type linear \ ---manifest_paths data/librispeech/manifest.train \ +--manifest_path data/librispeech/manifest.train \ --output_path data/librispeech/mean_std.npz ```