weditor安装失败最常见原因

weditor 作为一个比较好用的元素定位工具,然而安装时经常出现问题。

 “Preparing metadata (setup.py) ... error
  error: subprocess-exited-with-error

  × python setup.py egg_info did not run successfully.
  │ exit code: 1
  ╰─> [22 lines of output]”

原因是python版本和weditor版本不一致。

我用的python是3.8.2,weditor目前最新版本是0.6.7

1.最开始使用weditor安装命令:

pip install weditor

快速的weditor下载安装命令:

pip install weditor -i https://pypi.douban.com/simple --trust -host=pypi.douban.com

下载成功后,安装却失败了,日志如上

之后以为是pip版本问题,就更新到最新版,仍然失败

最后,使用weditor==0.6.4版本才终于成功:

pip install weditor==0.6.4  -i https://pypi.douban.com/simple --trust -host=pypi.douban.com

这个命令一般10s下载安装成功,之后使用:

python -m weditor

或者直接输入:weditor  既可以运行

如果运行失败,可使用:weditor --version查看是否安装成功和版本

你可能感兴趣的:(自动化)