diff --git a/01.fit_a_line/README.en.md b/01.fit_a_line/README.en.md
index b7d60ec64a45c9e8e4781416aef4fb55512c3318..31341db5e1b725ba6c646597537ef54f7bb14f9d 100644
--- a/01.fit_a_line/README.en.md
+++ b/01.fit_a_line/README.en.md
@@ -1,7 +1,7 @@
# Linear Regression
Let us begin the tutorial with a classical problem called Linear Regression \[[1](#References)\]. In this chapter, we will train a model from a realistic dataset to predict home prices. Some important concepts in Machine Learning will be covered through this example.
-The source code for this tutorial lives on [book/fit_a_line](https://github.com/PaddlePaddle/book/tree/develop/01.fit_a_line). For instructions on getting started with PaddlePaddle, see [PaddlePaddle installation guide](https://github.com/PaddlePaddle/book/blob/develop/README.en.md).
+The source code for this tutorial lives on [book/fit_a_line](https://github.com/PaddlePaddle/book/tree/develop/01.fit_a_line). For instructions on getting started with PaddlePaddle, see [PaddlePaddle installation guide](https://github.com/PaddlePaddle/book/blob/develop/README.en.md#running-the-book).
## Problem Setup
Suppose we have a dataset of $n$ real estate properties. These real estate properties will be referred to as *homes* in this chapter for clarity.
diff --git a/01.fit_a_line/README.md b/01.fit_a_line/README.md
index 5e7f6ee1d4f363857b66a0663f0570ca2df180c2..45950078e1c09d77d9e52c9b9160e3c3458557fc 100644
--- a/01.fit_a_line/README.md
+++ b/01.fit_a_line/README.md
@@ -1,7 +1,7 @@
# 线性回归
让我们从经典的线性回归(Linear Regression \[[1](#参考文献)\])模型开始这份教程。在这一章里,你将使用真实的数据集建立起一个房价预测模型,并且了解到机器学习中的若干重要概念。
-本教程源代码目录在[book/fit_a_line](https://github.com/PaddlePaddle/book/tree/develop/01.fit_a_line), 初次使用请参考PaddlePaddle[安装教程](https://github.com/PaddlePaddle/book/blob/develop/README.md)。
+本教程源代码目录在[book/fit_a_line](https://github.com/PaddlePaddle/book/tree/develop/01.fit_a_line), 初次使用请参考PaddlePaddle[安装教程](https://github.com/PaddlePaddle/book/blob/develop/README.md#运行这本书)。
## 背景介绍
给定一个大小为$n$的数据集 ${\{y_{i}, x_{i1}, ..., x_{id}\}}_{i=1}^{n}$,其中$x_{i1}, \ldots, x_{id}$是第$i$个样本$d$个属性上的取值,$y_i$是该样本待预测的目标。线性回归模型假设目标$y_i$可以被属性间的线性组合描述,即
diff --git a/01.fit_a_line/index.en.html b/01.fit_a_line/index.en.html
index 954f90ceb0c02fe749016fef97a8305a91bbb54b..fdb8c89cfad99aefea1727c89f414fc2b3ee4beb 100644
--- a/01.fit_a_line/index.en.html
+++ b/01.fit_a_line/index.en.html
@@ -43,7 +43,7 @@
# Linear Regression
Let us begin the tutorial with a classical problem called Linear Regression \[[1](#References)\]. In this chapter, we will train a model from a realistic dataset to predict home prices. Some important concepts in Machine Learning will be covered through this example.
-The source code for this tutorial lives on [book/fit_a_line](https://github.com/PaddlePaddle/book/tree/develop/01.fit_a_line). For instructions on getting started with PaddlePaddle, see [PaddlePaddle installation guide](https://github.com/PaddlePaddle/book/blob/develop/README.en.md).
+The source code for this tutorial lives on [book/fit_a_line](https://github.com/PaddlePaddle/book/tree/develop/01.fit_a_line). For instructions on getting started with PaddlePaddle, see [PaddlePaddle installation guide](https://github.com/PaddlePaddle/book/blob/develop/README.en.md#running-the-book).
## Problem Setup
Suppose we have a dataset of $n$ real estate properties. These real estate properties will be referred to as *homes* in this chapter for clarity.
diff --git a/01.fit_a_line/index.html b/01.fit_a_line/index.html
index 0046775767192ec67bda87b9e54103d2a24a60b8..cac6ce753a502d47aec931845eb014df4876d521 100644
--- a/01.fit_a_line/index.html
+++ b/01.fit_a_line/index.html
@@ -43,7 +43,7 @@
# 线性回归
让我们从经典的线性回归(Linear Regression \[[1](#参考文献)\])模型开始这份教程。在这一章里,你将使用真实的数据集建立起一个房价预测模型,并且了解到机器学习中的若干重要概念。
-本教程源代码目录在[book/fit_a_line](https://github.com/PaddlePaddle/book/tree/develop/01.fit_a_line), 初次使用请参考PaddlePaddle[安装教程](https://github.com/PaddlePaddle/book/blob/develop/README.md)。
+本教程源代码目录在[book/fit_a_line](https://github.com/PaddlePaddle/book/tree/develop/01.fit_a_line), 初次使用请参考PaddlePaddle[安装教程](https://github.com/PaddlePaddle/book/blob/develop/README.md#运行这本书)。
## 背景介绍
给定一个大小为$n$的数据集 ${\{y_{i}, x_{i1}, ..., x_{id}\}}_{i=1}^{n}$,其中$x_{i1}, \ldots, x_{id}$是第$i$个样本$d$个属性上的取值,$y_i$是该样本待预测的目标。线性回归模型假设目标$y_i$可以被属性间的线性组合描述,即
diff --git a/02.recognize_digits/README.en.md b/02.recognize_digits/README.en.md
index 894d4faea990a4fca21b003395c3125825eb8838..dde36a0d1b497a349d6772cf0c6472bae229b8a6 100644
--- a/02.recognize_digits/README.en.md
+++ b/02.recognize_digits/README.en.md
@@ -1,6 +1,6 @@
# Recognize Digits
-The source code for this tutorial is live at [book/recognize_digits](https://github.com/PaddlePaddle/book/tree/develop/02.recognize_digits). For instructions on getting started with Paddle, please refer to [installation instructions](https://github.com/PaddlePaddle/Paddle/blob/develop/doc/getstarted/build_and_install/docker_install_en.rst).
+The source code for this tutorial is live at [book/recognize_digits](https://github.com/PaddlePaddle/book/tree/develop/02.recognize_digits). For instructions on getting started with Paddle, please refer to [installation instructions](https://github.com/PaddlePaddle/book/blob/develop/README.en.md#running-the-book).
## Introduction
When one learns to program, the first task is usually to write a program that prints "Hello World!". In Machine Learning or Deep Learning, the equivalent task is to train a model to recognize hand-written digits on the dataset [MNIST](http://yann.lecun.com/exdb/mnist/). Handwriting recognition is a classic image classification problem. The problem is relatively easy and MNIST is a complete dataset. As a simple Computer Vision dataset, MNIST contains images of handwritten digits and their corresponding labels (Fig. 1). The input image is a $28\times28$ matrix, and the label is one of the digits from $0$ to $9$. All images are normalized, meaning that they are both rescaled and centered.
diff --git a/02.recognize_digits/README.md b/02.recognize_digits/README.md
index edb80727a21260778d295f05812e38fbb12b5172..17773c0495d39ebf6ccc272161527f4b9407123e 100644
--- a/02.recognize_digits/README.md
+++ b/02.recognize_digits/README.md
@@ -1,6 +1,6 @@
# 识别数字
-本教程源代码目录在[book/recognize_digits](https://github.com/PaddlePaddle/book/tree/develop/02.recognize_digits), 初次使用请参考PaddlePaddle[安装教程](https://github.com/PaddlePaddle/Paddle/blob/develop/doc/getstarted/build_and_install/docker_install_cn.rst)。
+本教程源代码目录在[book/recognize_digits](https://github.com/PaddlePaddle/book/tree/develop/02.recognize_digits), 初次使用请参考PaddlePaddle[安装教程](https://github.com/PaddlePaddle/book/blob/develop/README.md#运行这本书)。
## 背景介绍
当我们学习编程的时候,编写的第一个程序一般是实现打印"Hello World"。而机器学习(或深度学习)的入门教程,一般都是 [MNIST](http://yann.lecun.com/exdb/mnist/) 数据库上的手写识别问题。原因是手写识别属于典型的图像分类问题,比较简单,同时MNIST数据集也很完备。MNIST数据集作为一个简单的计算机视觉数据集,包含一系列如图1所示的手写数字图片和对应的标签。图片是28x28的像素矩阵,标签则对应着0~9的10个数字。每张图片都经过了大小归一化和居中处理。
diff --git a/02.recognize_digits/index.en.html b/02.recognize_digits/index.en.html
index 53895ea940de36d6ac87f428d6eac014384ae03e..7482f53df5b276929187ea39ed53a37d5cbf5c30 100644
--- a/02.recognize_digits/index.en.html
+++ b/02.recognize_digits/index.en.html
@@ -42,7 +42,7 @@
# Recognize Digits
-The source code for this tutorial is live at [book/recognize_digits](https://github.com/PaddlePaddle/book/tree/develop/02.recognize_digits). For instructions on getting started with Paddle, please refer to [installation instructions](https://github.com/PaddlePaddle/Paddle/blob/develop/doc/getstarted/build_and_install/docker_install_en.rst).
+The source code for this tutorial is live at [book/recognize_digits](https://github.com/PaddlePaddle/book/tree/develop/02.recognize_digits). For instructions on getting started with Paddle, please refer to [installation instructions](https://github.com/PaddlePaddle/book/blob/develop/README.en.md#running-the-book).
## Introduction
When one learns to program, the first task is usually to write a program that prints "Hello World!". In Machine Learning or Deep Learning, the equivalent task is to train a model to recognize hand-written digits on the dataset [MNIST](http://yann.lecun.com/exdb/mnist/). Handwriting recognition is a classic image classification problem. The problem is relatively easy and MNIST is a complete dataset. As a simple Computer Vision dataset, MNIST contains images of handwritten digits and their corresponding labels (Fig. 1). The input image is a $28\times28$ matrix, and the label is one of the digits from $0$ to $9$. All images are normalized, meaning that they are both rescaled and centered.
diff --git a/02.recognize_digits/index.html b/02.recognize_digits/index.html
index 82593db88e4abc0f16f10ecd14ebfa93c6832db6..60d7c850c1ae5f79f935df27a71e3e643f17aff9 100644
--- a/02.recognize_digits/index.html
+++ b/02.recognize_digits/index.html
@@ -42,7 +42,7 @@
# 识别数字
-本教程源代码目录在[book/recognize_digits](https://github.com/PaddlePaddle/book/tree/develop/02.recognize_digits), 初次使用请参考PaddlePaddle[安装教程](https://github.com/PaddlePaddle/Paddle/blob/develop/doc/getstarted/build_and_install/docker_install_cn.rst)。
+本教程源代码目录在[book/recognize_digits](https://github.com/PaddlePaddle/book/tree/develop/02.recognize_digits), 初次使用请参考PaddlePaddle[安装教程](https://github.com/PaddlePaddle/book/blob/develop/README.md#运行这本书)。
## 背景介绍
当我们学习编程的时候,编写的第一个程序一般是实现打印"Hello World"。而机器学习(或深度学习)的入门教程,一般都是 [MNIST](http://yann.lecun.com/exdb/mnist/) 数据库上的手写识别问题。原因是手写识别属于典型的图像分类问题,比较简单,同时MNIST数据集也很完备。MNIST数据集作为一个简单的计算机视觉数据集,包含一系列如图1所示的手写数字图片和对应的标签。图片是28x28的像素矩阵,标签则对应着0~9的10个数字。每张图片都经过了大小归一化和居中处理。
diff --git a/03.image_classification/README.en.md b/03.image_classification/README.en.md
index 07d5e319b0ce5c3cb38db18826d5efcba2603bfd..3e53a6f726e68551b0a21703f9bcaa787be3b183 100644
--- a/03.image_classification/README.en.md
+++ b/03.image_classification/README.en.md
@@ -1,7 +1,7 @@
Image Classification
=======================
-The source code for this chapter is at [book/image_classification](https://github.com/PaddlePaddle/book/tree/develop/03.image_classification). First-time users, please refer to PaddlePaddle [Installation Tutorial](https://github.com/PaddlePaddle/Paddle/blob/develop/doc/getstarted/build_and_install/docker_install_en.rst) for installation instructions.
+The source code for this chapter is at [book/image_classification](https://github.com/PaddlePaddle/book/tree/develop/03.image_classification). First-time users, please refer to PaddlePaddle [Installation Tutorial](https://github.com/PaddlePaddle/book/blob/develop/README.en.md#running-the-book) for installation instructions.
## Background
diff --git a/03.image_classification/README.md b/03.image_classification/README.md
index 31d29d9bb23beaf2b1a383501dff31053cca1d9b..2262d8899fb0e064bc135fa5709ea3ff5b612f97 100644
--- a/03.image_classification/README.md
+++ b/03.image_classification/README.md
@@ -1,6 +1,6 @@
# 图像分类
-本教程源代码目录在[book/image_classification](https://github.com/PaddlePaddle/book/tree/develop/03.image_classification), 初次使用请参考PaddlePaddle[安装教程](https://github.com/PaddlePaddle/Paddle/blob/develop/doc/getstarted/build_and_install/docker_install_cn.rst)。
+本教程源代码目录在[book/image_classification](https://github.com/PaddlePaddle/book/tree/develop/03.image_classification), 初次使用请参考PaddlePaddle[安装教程](https://github.com/PaddlePaddle/book/blob/develop/README.md#运行这本书)。
## 背景介绍
diff --git a/03.image_classification/index.en.html b/03.image_classification/index.en.html
index ad5b9053180f32c2901d9b28d6cd62149412c353..c34fb385f852ae0e016e3ca08043d3c436094799 100644
--- a/03.image_classification/index.en.html
+++ b/03.image_classification/index.en.html
@@ -43,7 +43,7 @@
Image Classification
=======================
-The source code for this chapter is at [book/image_classification](https://github.com/PaddlePaddle/book/tree/develop/03.image_classification). First-time users, please refer to PaddlePaddle [Installation Tutorial](https://github.com/PaddlePaddle/Paddle/blob/develop/doc/getstarted/build_and_install/docker_install_en.rst) for installation instructions.
+The source code for this chapter is at [book/image_classification](https://github.com/PaddlePaddle/book/tree/develop/03.image_classification). First-time users, please refer to PaddlePaddle [Installation Tutorial](https://github.com/PaddlePaddle/book/blob/develop/README.en.md#running-the-book) for installation instructions.
## Background
diff --git a/03.image_classification/index.html b/03.image_classification/index.html
index 1bb2b96102c306a0123641c8bab41a67dfad4d8d..8f059be9c451e67ab02d73941f391d1de5a20cce 100644
--- a/03.image_classification/index.html
+++ b/03.image_classification/index.html
@@ -42,7 +42,7 @@
# 图像分类
-本教程源代码目录在[book/image_classification](https://github.com/PaddlePaddle/book/tree/develop/03.image_classification), 初次使用请参考PaddlePaddle[安装教程](https://github.com/PaddlePaddle/Paddle/blob/develop/doc/getstarted/build_and_install/docker_install_cn.rst)。
+本教程源代码目录在[book/image_classification](https://github.com/PaddlePaddle/book/tree/develop/03.image_classification), 初次使用请参考PaddlePaddle[安装教程](https://github.com/PaddlePaddle/book/blob/develop/README.md#运行这本书)。
## 背景介绍
diff --git a/04.word2vec/README.en.md b/04.word2vec/README.en.md
index f9afc3415e553ec3225ff9c121df053dcceb191d..c00194c81e0ed29bcf3b0d6cad3c903565f16dbd 100644
--- a/04.word2vec/README.en.md
+++ b/04.word2vec/README.en.md
@@ -2,7 +2,7 @@
This is intended as a reference tutorial. The source code of this tutorial lives on [book/word2vec](https://github.com/PaddlePaddle/book/tree/develop/04.word2vec).
-For instructions on getting started with PaddlePaddle, see [PaddlePaddle installation guide](https://github.com/PaddlePaddle/Paddle/blob/develop/doc/getstarted/build_and_install/docker_install_en.rst).
+For instructions on getting started with PaddlePaddle, see [PaddlePaddle installation guide](https://github.com/PaddlePaddle/book/blob/develop/README.en.md#running-the-book).
## Background Introduction
diff --git a/04.word2vec/README.md b/04.word2vec/README.md
index a8e3864b1454772ef088db7ebd3e6b2c3f6e60d7..d29a5dd912c4f8ad8d1f1ac1735d832198be85d2 100644
--- a/04.word2vec/README.md
+++ b/04.word2vec/README.md
@@ -1,7 +1,7 @@
# 词向量
-本教程源代码目录在[book/word2vec](https://github.com/PaddlePaddle/book/tree/develop/04.word2vec), 初次使用请参考PaddlePaddle[安装教程](https://github.com/PaddlePaddle/Paddle/blob/develop/doc/getstarted/build_and_install/docker_install_cn.rst)。
+本教程源代码目录在[book/word2vec](https://github.com/PaddlePaddle/book/tree/develop/04.word2vec), 初次使用请参考PaddlePaddle[安装教程](https://github.com/PaddlePaddle/book/blob/develop/README.md#运行这本书)。
## 背景介绍
diff --git a/04.word2vec/index.en.html b/04.word2vec/index.en.html
index 64bb274d7971f07cb7c5ce908a1c6619ecbc255e..f02da81a853cffc876412768949ecb2e32bb5885 100644
--- a/04.word2vec/index.en.html
+++ b/04.word2vec/index.en.html
@@ -44,7 +44,7 @@
This is intended as a reference tutorial. The source code of this tutorial lives on [book/word2vec](https://github.com/PaddlePaddle/book/tree/develop/04.word2vec).
-For instructions on getting started with PaddlePaddle, see [PaddlePaddle installation guide](https://github.com/PaddlePaddle/Paddle/blob/develop/doc/getstarted/build_and_install/docker_install_en.rst).
+For instructions on getting started with PaddlePaddle, see [PaddlePaddle installation guide](https://github.com/PaddlePaddle/book/blob/develop/README.en.md#running-the-book).
## Background Introduction
diff --git a/04.word2vec/index.html b/04.word2vec/index.html
index caaa2bcd295ba2b6f1b2315b3875aab759c71045..b7228b39e781d4cdcf6dae5d7abc7e7f49b040ed 100644
--- a/04.word2vec/index.html
+++ b/04.word2vec/index.html
@@ -43,7 +43,7 @@
# 词向量
-本教程源代码目录在[book/word2vec](https://github.com/PaddlePaddle/book/tree/develop/04.word2vec), 初次使用请参考PaddlePaddle[安装教程](https://github.com/PaddlePaddle/Paddle/blob/develop/doc/getstarted/build_and_install/docker_install_cn.rst)。
+本教程源代码目录在[book/word2vec](https://github.com/PaddlePaddle/book/tree/develop/04.word2vec), 初次使用请参考PaddlePaddle[安装教程](https://github.com/PaddlePaddle/book/blob/develop/README.md#运行这本书)。
## 背景介绍
diff --git a/05.recommender_system/README.en.md b/05.recommender_system/README.en.md
index 92418d941f798a2c5b6ead3a4ca3dcfc911d43e1..db060aa1ade1217ec22dd1b68619750ecd300a3e 100644
--- a/05.recommender_system/README.en.md
+++ b/05.recommender_system/README.en.md
@@ -2,7 +2,7 @@
The source code of this tutorial is in [book/recommender_system](https://github.com/PaddlePaddle/book/tree/develop/05.recommender_system).
-For instructions on getting started with PaddlePaddle, see [PaddlePaddle installation guide](https://github.com/PaddlePaddle/Paddle/blob/develop/doc/getstarted/build_and_install/docker_install_en.rst).
+For instructions on getting started with PaddlePaddle, see [PaddlePaddle installation guide](https://github.com/PaddlePaddle/book/blob/develop/README.en.md#running-the-book).
## Background
diff --git a/05.recommender_system/README.md b/05.recommender_system/README.md
index 4d4911940aab9f6936443406e0218cc3d4ef7551..ab4126ab5b895c35c712648c5a64caffdbc294fe 100644
--- a/05.recommender_system/README.md
+++ b/05.recommender_system/README.md
@@ -1,6 +1,6 @@
# 个性化推荐
-本教程源代码目录在[book/recommender_system](https://github.com/PaddlePaddle/book/tree/develop/05.recommender_system), 初次使用请参考PaddlePaddle[安装教程](https://github.com/PaddlePaddle/Paddle/blob/develop/doc/getstarted/build_and_install/docker_install_cn.rst)。
+本教程源代码目录在[book/recommender_system](https://github.com/PaddlePaddle/book/tree/develop/05.recommender_system), 初次使用请参考PaddlePaddle[安装教程](https://github.com/PaddlePaddle/book/blob/develop/README.md#运行这本书)。
## 背景介绍
diff --git a/05.recommender_system/index.en.html b/05.recommender_system/index.en.html
index 6b03121233aa6cda50e332cd740d6ebf2ba4a6bd..956212471a0abd2af457b0198ce01c2e28682a4a 100644
--- a/05.recommender_system/index.en.html
+++ b/05.recommender_system/index.en.html
@@ -44,7 +44,7 @@
The source code of this tutorial is in [book/recommender_system](https://github.com/PaddlePaddle/book/tree/develop/05.recommender_system).
-For instructions on getting started with PaddlePaddle, see [PaddlePaddle installation guide](https://github.com/PaddlePaddle/Paddle/blob/develop/doc/getstarted/build_and_install/docker_install_en.rst).
+For instructions on getting started with PaddlePaddle, see [PaddlePaddle installation guide](https://github.com/PaddlePaddle/book/blob/develop/README.en.md#running-the-book).
## Background
diff --git a/05.recommender_system/index.html b/05.recommender_system/index.html
index 45276043c90d92d44700ff476b59581fe94b34e8..7722e63270dd553c3f3a93d99473dc64d0d3925a 100644
--- a/05.recommender_system/index.html
+++ b/05.recommender_system/index.html
@@ -42,7 +42,7 @@
# 个性化推荐
-本教程源代码目录在[book/recommender_system](https://github.com/PaddlePaddle/book/tree/develop/05.recommender_system), 初次使用请参考PaddlePaddle[安装教程](https://github.com/PaddlePaddle/Paddle/blob/develop/doc/getstarted/build_and_install/docker_install_cn.rst)。
+本教程源代码目录在[book/recommender_system](https://github.com/PaddlePaddle/book/tree/develop/05.recommender_system), 初次使用请参考PaddlePaddle[安装教程](https://github.com/PaddlePaddle/book/blob/develop/README.md#运行这本书)。
## 背景介绍
diff --git a/06.understand_sentiment/README.en.md b/06.understand_sentiment/README.en.md
index 7d22d83a29f15fddb94101574d7cab38ea6e17f0..5af7434fc1d09ed4c2e3b15e7b49f48ffe67c548 100644
--- a/06.understand_sentiment/README.en.md
+++ b/06.understand_sentiment/README.en.md
@@ -1,6 +1,6 @@
# Sentiment Analysis
-The source codes of this section can be located at [book/understand_sentiment](https://github.com/PaddlePaddle/book/tree/develop/06.understand_sentiment). First-time users may refer to PaddlePaddle for [Installation guide](https://github.com/PaddlePaddle/Paddle/blob/develop/doc/getstarted/build_and_install/docker_install_en.rst).
+The source codes of this section can be located at [book/understand_sentiment](https://github.com/PaddlePaddle/book/tree/develop/06.understand_sentiment). First-time users may refer to PaddlePaddle for [Installation guide](https://github.com/PaddlePaddle/book/blob/develop/README.en.md#running-the-book).
## Background
diff --git a/06.understand_sentiment/README.md b/06.understand_sentiment/README.md
index 35dd57b4391273f8d3e6ab578e19ea0795e71f5b..21c9da5455e80283e639999451835867cf5a9f2f 100644
--- a/06.understand_sentiment/README.md
+++ b/06.understand_sentiment/README.md
@@ -1,6 +1,6 @@
# 情感分析
-本教程源代码目录在[book/understand_sentiment](https://github.com/PaddlePaddle/book/tree/develop/06.understand_sentiment), 初次使用请参考PaddlePaddle[安装教程](https://github.com/PaddlePaddle/Paddle/blob/develop/doc/getstarted/build_and_install/docker_install_cn.rst)。
+本教程源代码目录在[book/understand_sentiment](https://github.com/PaddlePaddle/book/tree/develop/06.understand_sentiment), 初次使用请参考PaddlePaddle[安装教程](https://github.com/PaddlePaddle/book/blob/develop/README.md#运行这本书)。
## 背景介绍
diff --git a/06.understand_sentiment/index.en.html b/06.understand_sentiment/index.en.html
index e8b3bddd708dfd59640a8f8b0fe3907959fafdeb..8b46a9d7c82e443c1f3fdc5aa9b8fcf44f0224d4 100644
--- a/06.understand_sentiment/index.en.html
+++ b/06.understand_sentiment/index.en.html
@@ -42,7 +42,7 @@
# Sentiment Analysis
-The source codes of this section can be located at [book/understand_sentiment](https://github.com/PaddlePaddle/book/tree/develop/06.understand_sentiment). First-time users may refer to PaddlePaddle for [Installation guide](https://github.com/PaddlePaddle/Paddle/blob/develop/doc/getstarted/build_and_install/docker_install_en.rst).
+The source codes of this section can be located at [book/understand_sentiment](https://github.com/PaddlePaddle/book/tree/develop/06.understand_sentiment). First-time users may refer to PaddlePaddle for [Installation guide](https://github.com/PaddlePaddle/book/blob/develop/README.en.md#running-the-book).
## Background
diff --git a/06.understand_sentiment/index.html b/06.understand_sentiment/index.html
index 9fb9036396297ca44196feb57b9fe77a468db49b..370597699b40fac189c9bf30b8a63a28f26ab809 100644
--- a/06.understand_sentiment/index.html
+++ b/06.understand_sentiment/index.html
@@ -42,7 +42,7 @@
# 情感分析
-本教程源代码目录在[book/understand_sentiment](https://github.com/PaddlePaddle/book/tree/develop/06.understand_sentiment), 初次使用请参考PaddlePaddle[安装教程](https://github.com/PaddlePaddle/Paddle/blob/develop/doc/getstarted/build_and_install/docker_install_cn.rst)。
+本教程源代码目录在[book/understand_sentiment](https://github.com/PaddlePaddle/book/tree/develop/06.understand_sentiment), 初次使用请参考PaddlePaddle[安装教程](https://github.com/PaddlePaddle/book/blob/develop/README.md#运行这本书)。
## 背景介绍
diff --git a/07.label_semantic_roles/README.en.md b/07.label_semantic_roles/README.en.md
index dc565c2c801cdef5b47f6a012e47471ba2a2536f..b3db3c608934c20805d31a129e9d5ee22a1284ec 100644
--- a/07.label_semantic_roles/README.en.md
+++ b/07.label_semantic_roles/README.en.md
@@ -2,7 +2,7 @@
The source code of this chapter is live on [book/label_semantic_roles](https://github.com/PaddlePaddle/book/tree/develop/07.label_semantic_roles).
-For instructions on getting started with PaddlePaddle, see [PaddlePaddle installation guide](https://github.com/PaddlePaddle/Paddle/blob/develop/doc/getstarted/build_and_install/docker_install_en.rst).
+For instructions on getting started with PaddlePaddle, see [PaddlePaddle installation guide](https://github.com/PaddlePaddle/book/blob/develop/README.en.md#running-the-book).
## Background
diff --git a/07.label_semantic_roles/README.md b/07.label_semantic_roles/README.md
index fa149fe072c01d2219c2cec3cc91082680424e62..01720988b287d920b56f2c0a03991d54dc8ab7b0 100644
--- a/07.label_semantic_roles/README.md
+++ b/07.label_semantic_roles/README.md
@@ -1,6 +1,6 @@
# 语义角色标注
-本教程源代码目录在[book/label_semantic_roles](https://github.com/PaddlePaddle/book/tree/develop/07.label_semantic_roles), 初次使用请参考PaddlePaddle[安装教程](https://github.com/PaddlePaddle/Paddle/blob/develop/doc/getstarted/build_and_install/docker_install_cn.rst)。
+本教程源代码目录在[book/label_semantic_roles](https://github.com/PaddlePaddle/book/tree/develop/07.label_semantic_roles), 初次使用请参考PaddlePaddle[安装教程](https://github.com/PaddlePaddle/book/blob/develop/README.md#运行这本书)。
## 背景介绍
diff --git a/07.label_semantic_roles/index.en.html b/07.label_semantic_roles/index.en.html
index 512531a45efafa776fa623300165caf9e5a381e2..952a2efc4c3e11fba9530007ee93969d5b64bd35 100644
--- a/07.label_semantic_roles/index.en.html
+++ b/07.label_semantic_roles/index.en.html
@@ -44,7 +44,7 @@
The source code of this chapter is live on [book/label_semantic_roles](https://github.com/PaddlePaddle/book/tree/develop/07.label_semantic_roles).
-For instructions on getting started with PaddlePaddle, see [PaddlePaddle installation guide](https://github.com/PaddlePaddle/Paddle/blob/develop/doc/getstarted/build_and_install/docker_install_en.rst).
+For instructions on getting started with PaddlePaddle, see [PaddlePaddle installation guide](https://github.com/PaddlePaddle/book/blob/develop/README.en.md#running-the-book).
## Background
diff --git a/07.label_semantic_roles/index.html b/07.label_semantic_roles/index.html
index a5ebaf40ca2fcea91be1f05f19123a2a9645be28..725f6a33e53555618467581c36a699c45a6345ed 100644
--- a/07.label_semantic_roles/index.html
+++ b/07.label_semantic_roles/index.html
@@ -42,7 +42,7 @@
# 语义角色标注
-本教程源代码目录在[book/label_semantic_roles](https://github.com/PaddlePaddle/book/tree/develop/07.label_semantic_roles), 初次使用请参考PaddlePaddle[安装教程](https://github.com/PaddlePaddle/Paddle/blob/develop/doc/getstarted/build_and_install/docker_install_cn.rst)。
+本教程源代码目录在[book/label_semantic_roles](https://github.com/PaddlePaddle/book/tree/develop/07.label_semantic_roles), 初次使用请参考PaddlePaddle[安装教程](https://github.com/PaddlePaddle/book/blob/develop/README.md#运行这本书)。
## 背景介绍
diff --git a/08.machine_translation/README.en.md b/08.machine_translation/README.en.md
index 0c43c7f24b871c3aad5f35f70cf8d2296f919d0c..398fc38560204d3337b7637f336fec8c8d750bb1 100644
--- a/08.machine_translation/README.en.md
+++ b/08.machine_translation/README.en.md
@@ -1,6 +1,6 @@
# Machine Translation
-The source codes is located at [book/machine_translation](https://github.com/PaddlePaddle/book/tree/develop/08.machine_translation). Please refer to the PaddlePaddle [installation tutorial](https://github.com/PaddlePaddle/Paddle/blob/develop/doc/getstarted/build_and_install/docker_install_en.rst) if you are a first time user.
+The source codes is located at [book/machine_translation](https://github.com/PaddlePaddle/book/tree/develop/08.machine_translation). Please refer to the PaddlePaddle [installation tutorial](https://github.com/PaddlePaddle/book/blob/develop/README.en.md#running-the-book) if you are a first time user.
## Background
diff --git a/08.machine_translation/README.md b/08.machine_translation/README.md
index 9e852a0f45842a2bff8b0b9b11843006a9ff9679..b2055e7fea13a121b1db75d528a04c0f1e309d3d 100644
--- a/08.machine_translation/README.md
+++ b/08.machine_translation/README.md
@@ -1,6 +1,6 @@
# 机器翻译
-本教程源代码目录在[book/machine_translation](https://github.com/PaddlePaddle/book/tree/develop/08.machine_translation), 初次使用请参考PaddlePaddle[安装教程](https://github.com/PaddlePaddle/Paddle/blob/develop/doc/getstarted/build_and_install/docker_install_cn.rst)。
+本教程源代码目录在[book/machine_translation](https://github.com/PaddlePaddle/book/tree/develop/08.machine_translation), 初次使用请参考PaddlePaddle[安装教程](https://github.com/PaddlePaddle/book/blob/develop/README.md#运行这本书)。
## 背景介绍
diff --git a/08.machine_translation/index.en.html b/08.machine_translation/index.en.html
index 1e9344d7c6cc604db6cf78f7cfbdbc0f3d1fefb4..d0c2ff3eba71f0595538176b7e9f874c29c96e6e 100644
--- a/08.machine_translation/index.en.html
+++ b/08.machine_translation/index.en.html
@@ -42,7 +42,7 @@
# Machine Translation
-The source codes is located at [book/machine_translation](https://github.com/PaddlePaddle/book/tree/develop/08.machine_translation). Please refer to the PaddlePaddle [installation tutorial](https://github.com/PaddlePaddle/Paddle/blob/develop/doc/getstarted/build_and_install/docker_install_en.rst) if you are a first time user.
+The source codes is located at [book/machine_translation](https://github.com/PaddlePaddle/book/tree/develop/08.machine_translation). Please refer to the PaddlePaddle [installation tutorial](https://github.com/PaddlePaddle/book/blob/develop/README.en.md#running-the-book) if you are a first time user.
## Background
diff --git a/08.machine_translation/index.html b/08.machine_translation/index.html
index b446673a269769f7bbfcb1393ad4e5ab7b09eb3c..4082319fa557e92fb48b6e1dc4f48dbc4042dcd1 100644
--- a/08.machine_translation/index.html
+++ b/08.machine_translation/index.html
@@ -42,7 +42,7 @@
# 机器翻译
-本教程源代码目录在[book/machine_translation](https://github.com/PaddlePaddle/book/tree/develop/08.machine_translation), 初次使用请参考PaddlePaddle[安装教程](https://github.com/PaddlePaddle/Paddle/blob/develop/doc/getstarted/build_and_install/docker_install_cn.rst)。
+本教程源代码目录在[book/machine_translation](https://github.com/PaddlePaddle/book/tree/develop/08.machine_translation), 初次使用请参考PaddlePaddle[安装教程](https://github.com/PaddlePaddle/book/blob/develop/README.md#运行这本书)。
## 背景介绍