From 9c17921168639349c8359609b9d894cf9c430f1e Mon Sep 17 00:00:00 2001 From: debugtalk Date: Sun, 23 Jul 2017 12:45:11 +0800 Subject: [PATCH] convert docs/FAQ to English --- docs/FAQ.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/FAQ.md b/docs/FAQ.md index 475a3bbd..accdcb90 100644 --- a/docs/FAQ.md +++ b/docs/FAQ.md @@ -1,19 +1,19 @@ -## 无法自动安装PyUnitReport依赖库 +## Unable to install PyUnitReport dependency library automatically -如果安装过程中出现如下报错: +If there is something goes wrong in installation like below. ```text Downloading/unpacking PyUnitReport (from ApiTestEngine) Could not find any downloads that satisfy the requirement PyUnitReport (from ApiTestEngine) ``` -那么需要先手动安装`PyUnitReport`,安装方式如下: +You could install `PyUnitReport` manully at first. ```bash $ pip install git+https://github.com/debugtalk/PyUnitReport.git#egg=PyUnitReport ``` -然后再重新安装`ApiTestEngine`即可。 +And then everything will be OK when you reinstall `ApiTestEngine`. ```bash $ pip install git+https://github.com/debugtalk/ApiTestEngine.git#egg=ApiTestEngine