管理接口平台,提高工作效率的关键解决方案
752
2022-08-27
【python】pip install 报错Could not fetch URL https://pypi.org/simple/json-schema/
问题现象
Could not fetch URL There was a problem confirming the ssl certificate: HTTPSConnectionPool(host='pypi.org', port=443): Max retries exceeded with url: /simple/json-schema/ (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')])"))) - skipping ERROR: Could not find a version that satisfies the requirement json_schema (from versions: none)ERROR: No matching distribution found for json_schema
解决方案
正常安装的时候我们都是用 pip install 三方库 如果出现上述错误 ,就把命令改成pip --trusted-host pypi.python.org install 三方库
pip install 后面跟自己要安装的库名即可
python -m pip install 库名 --trusted-host=pypi.python.org --trusted-host=pypi.org --trusted-host=files.pythonhosted.org
参考链接
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~