问题如下:
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 包名