diff --git a/docs/source/install.md b/docs/source/install.md index 85084777..02c13997 100644 --- a/docs/source/install.md +++ b/docs/source/install.md @@ -13,6 +13,7 @@ There are 3 ways to use `PaddleSpeech`. According to the degree of difficulty, t - PaddlePaddle latest version (please refer to the [Installation Guide] (https://www.paddlepaddle.org.cn/documentation/docs/en/beginners_guide/index_en.html)) - C++ compilation environment - Hip: For Linux and Mac, do not use command `sh` instead of command `bash` in installation document. +- Hip: We recommand you to install `paddlepaddle` from https://mirror.baidu.com/pypi/simple and install `paddlespeech` from https://pypi.tuna.tsinghua.edu.cn/simple. ## Easy: Get the Basic Function (Support Linux, Mac, and Windows) - If you are newer to `PaddleSpeech` and want to experience it easily without your machine. We recommend you to use [AI Studio](https://aistudio.baidu.com/aistudio/index) to experience it. There is a step-by-step tutorial for `PaddleSpeech` and you can use the basic function of `PaddleSpeech` with a free machine. @@ -49,7 +50,8 @@ conda install -y -c gcc_linux-64=8.4.0 gxx_linux-64=8.4.0 ### Install PaddleSpeech You can use the following command: ```bash -pip install paddlepaddle paddlespeech +pip install paddlepaddle -i https://mirror.baidu.com/pypi/simple +pip install paddlespeech -i https://pypi.tuna.tsinghua.edu.cn/simple ``` ## Medium: Get the Major Functions (Support Linux) If you want to get the major function of `paddlespeech`, you need to do following steps: @@ -105,13 +107,13 @@ conda install -y -c gcc_linux-64=8.4.0 gxx_linux-64=8.4.0 ### Install PaddlePaddle You can choose the `PaddlePaddle` version based on your system. For example, for CUDA 10.2, CuDNN7.5 install paddlepaddle-gpu 2.2.0: ```bash -python3 -m pip install paddlepaddle-gpu==2.2.0 +python3 -m pip install paddlepaddle-gpu==2.2.0 -i https://mirror.baidu.com/pypi/simple ``` ### Install PaddleSpeech You can install `paddlespeech` by the following command,then you can use the `ready-made` examples in `paddlespeech` : ```bash # Make sure you are in the root directory of PaddleSpeech -pip install . +pip install . -i https://pypi.tuna.tsinghua.edu.cn/simple ``` ## Hard: Get the Full Function (Support Ubuntu) @@ -178,11 +180,11 @@ conda install -y -c conda-forge sox libsndfile swig bzip2 libflac bc Make sure you have GPU and the paddlepaddle version is right. For example, for CUDA 10.2, CuDNN7.5 install paddle 2.2.0: ```bash -python3 -m pip install paddlepaddle-gpu==2.2.0 +python3 -m pip install paddlepaddle-gpu==2.2.0 -i https://mirror.baidu.com/pypi/simple ``` ### Install PaddleSpeech in Developing Mode ```bash -pip install -e .[develop] +pip install -e .[develop] -i https://pypi.tuna.tsinghua.edu.cn/simple ``` ### Install the Kaldi (Optional) ```bash diff --git a/docs/source/install_cn.md b/docs/source/install_cn.md index 3ffe371d..c0561c09 100644 --- a/docs/source/install_cn.md +++ b/docs/source/install_cn.md @@ -11,6 +11,8 @@ - 最新版本的 PaddlePaddle (请看 [安装向导](https://www.paddlepaddle.org.cn/documentation/docs/en/beginners_guide/index_en.html)) - C++ 编译环境 - 提示: 对于 Linux 和 Mac,请不要使用 `sh` 代替安装文档中的 `bash` +- 提示: 我们建议在安装 `paddlepaddle` 的时候使用百度源 https://mirror.baidu.com/pypi/simple ,而在安装 `paddlespeech` 的时候使用清华源 https://pypi.tuna.tsinghua.edu.cn/simple 。 + ## 简单: 获取基本功能(支持 Linux,Mac 和 Windows) - 如果你是一个刚刚接触 `PaddleSpeech` 的新人并且想要很方便地体验一下该项目。我们建议你 体验一下[AI Studio](https://aistudio.baidu.com/aistudio/index)。我们在AI Studio上面建立了一个让你一步一步运行体验来使用`PaddleSpeech`的教程。 - 如果你想使用 `PaddleSpeech` 的命令行功能,你需要跟随下面的步骤来安装 `PaddleSpeech`。如果你想了解更多关于使用 `PaddleSpeech` 命令行功能的信息,你可以参考 [cli](https://github.com/PaddlePaddle/PaddleSpeech/tree/develop/paddlespeech/cli)。 @@ -44,12 +46,13 @@ conda install -y -c gcc_linux-64=8.4.0 gxx_linux-64=8.4.0 ### 安装 PaddleSpeech 你可以使用如下命令: ```bash -pip install paddlepaddle paddlespeech +pip install paddlepaddle -i https://mirror.baidu.com/pypi/simple +pip install paddlespeech -i https://pypi.tuna.tsinghua.edu.cn/simple ``` ## 中等: 获取主要功能(支持 Linux) -如果你想要使用` paddlespeech` 的主要功能。你需要完成以下几个步骤 +如果你想要使用 `paddlespeech` 的主要功能。你需要完成以下几个步骤 ### Git clone PaddleSpeech -你需要先git clone本仓库 +你需要先 git clone 本仓库 ```bash git clone https://github.com/PaddlePaddle/PaddleSpeech.git cd PaddleSpeech @@ -98,12 +101,13 @@ conda install -y -c gcc_linux-64=8.4.0 gxx_linux-64=8.4.0 ### 安装 PaddlePaddle 你可以根据系统配置选择 PaddlePaddle 版本,例如系统使用 CUDA 10.2, CuDNN7.5 ,你可以安装 paddlepaddle-gpu 2.2.0: ```bash -python3 -m pip install paddlepaddle-gpu==2.2.0 +python3 -m pip install paddlepaddle-gpu==2.2.0 -i https://mirror.baidu.com/pypi/simple ``` ### 安装 PaddleSpeech 最后安装 `paddlespeech`,这样你就可以使用 `paddlespeech`中已有的 examples: ```bash -pip install . +# 请确保目前处于PaddleSpeech项目的根目录 +pip install . -i https://pypi.tuna.tsinghua.edu.cn/simple ``` ## 困难: 获取所有功能(支持 Ubuntu) ### 先决条件 @@ -164,11 +168,11 @@ conda install -y -c conda-forge sox libsndfile swig bzip2 libflac bc ### 安装 PaddlePaddle 请确认你系统是否有 GPU,并且使用了正确版本的 paddlepaddle。例如系统使用 CUDA 10.2, CuDNN7.5 ,你可以安装 paddlepaddle-gpu 2.2.0: ```bash -python3 -m pip install paddlepaddle-gpu==2.2.0 +python3 -m pip install paddlepaddle-gpu==2.2.0 -i https://mirror.baidu.com/pypi/simple ``` ### 用开发者模式安装 PaddleSpeech ```bash -pip install -e .[develop] +pip install -e .[develop] -i https://pypi.tuna.tsinghua.edu.cn/simple ``` ### 安装 Kaldi(可选) ```bash