diff --git a/README.md b/README.md index c92bec7d..b9bc95a7 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/docs/FAQ.md b/docs/FAQ.md new file mode 100644 index 00000000..475a3bbd --- /dev/null +++ b/docs/FAQ.md @@ -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 +```