mirror of
https://github.com/httprunner/httprunner.git
synced 2026-05-12 02:21:29 +08:00
add FAQ for installing
This commit is contained in:
@@ -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
20
docs/FAQ.md
Normal 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
|
||||
```
|
||||
Reference in New Issue
Block a user