add FAQ for installing

This commit is contained in:
debugtalk
2017-07-20 11:08:59 +08:00
parent 72485d9bcb
commit 6ef716b9fe
2 changed files with 23 additions and 1 deletions

View File

@@ -22,7 +22,9 @@
$ pip install git+https://github.com/debugtalk/ApiTestEngine.git#egg=ApiTestEngine
```
执行`ate -V`,检测安装是否成功
若安装出现问题,请查看[`FAQ`](docs/FAQ.md)
执行`ate -V`,若正常显示版本号,则说明安装成功。
```text
$ ate -V

20
docs/FAQ.md Normal file
View File

@@ -0,0 +1,20 @@
## 无法自动安装PyUnitReport依赖库
如果安装过程中出现如下报错:
```text
Downloading/unpacking PyUnitReport (from ApiTestEngine)
Could not find any downloads that satisfy the requirement PyUnitReport (from ApiTestEngine)
```
那么需要先手动安装`PyUnitReport`,安装方式如下:
```bash
$ pip install git+https://github.com/debugtalk/PyUnitReport.git#egg=PyUnitReport
```
然后再重新安装`ApiTestEngine`即可。
```bash
$ pip install git+https://github.com/debugtalk/ApiTestEngine.git#egg=ApiTestEngine
```