自学内容网 自学内容网

尝试从 http://pypi.doubanio.com/simple 这个索引源安装 webdriver 时出现了问题

问题如下: 

WARNING: The repository located at pypi.doubanio.com is not a trusted or secure host and is being ignored. If this repository is available via HTTPS we recommend you use HTTPS instead, otherwise you may silence this warning and allow it anyway with '--trusted-host pypi.doubanio.com'. ERROR: Could not find a version that satisfies the requirement webdriver (from versions: none) ERROR: No matching distribution found for webdriver WARNING: The repository located at pypi.doubanio.com is not a trusted or secure host and is being ignored. If this repository is available via HTTPS we recommend you use HTTPS instead, otherwise you may silence this warning and allow it anyway with '--trusted-host pypi.doubanio.com'. 

问题分析:

pypi.doubanio.com 被警告不是一个受信任或安全的主机,可能存在安全风险,并且这个源上找不到满足 webdriver 需求的版本


解决办法:将pip 配置指向官方源,使用官方的 Python 包索引源 https://pypi.org/simple

1、打开命令行界面

2、检查当前的 pip 源配置

   pip config list

3、如果发现当前源是 pypi.doubanio.com,切换到官方源 

   pip config set global.index-url https://pypi.org/simple

4、安装所需要的包:

pip install 包名 


原文地址:https://blog.csdn.net/Qj60776671/article/details/142715260

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!