add FAQ for installing

This commit is contained in:
httprunner
2017-07-20 11:08:59 +08:00
parent f30ea4ae83
commit 7f88efd866
2 changed files with 23 additions and 1 deletions

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
```