本文主要是介绍weditor安装时提示This is an issue with the package mentioned above, not pip.解决方法,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
报错如下:
note: This error originates from a subprocess, and is likely not a problem with pip.
error: metadata-generation-failed
× Encountered error while generating package metadata.
╰─> See above for output.
note: This is an issue with the package mentioned above, not pip.
hint: See above for details.
解决方法:
降低安装版本:pip install weditor==0.6.4
降低到哪个版本可以参考安装时失败的安装版本的上一个;
或者可以访问官网自己查看:weditor · PyPI
若安装超时:
pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Read timed out.
命令行超时安装语句:pip --default-timeout=1000 install -U 模块名
eg:pip --default-timeout=1000 install -U uiautomator2
这篇关于weditor安装时提示This is an issue with the package mentioned above, not pip.解决方法的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!