Files
httprunner/docs/FAQ.md
2017-07-23 12:45:11 +08:00

21 lines
602 B
Markdown

## 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)
```
You could install `PyUnitReport` manully at first.
```bash
$ pip install git+https://github.com/debugtalk/PyUnitReport.git#egg=PyUnitReport
```
And then everything will be OK when you reinstall `ApiTestEngine`.
```bash
$ pip install git+https://github.com/debugtalk/ApiTestEngine.git#egg=ApiTestEngine
```