ERROR: No matching distribution found for selenium

2019-09-29 17:40:27 浏览数 (1)

版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。

本文链接:https://blog.csdn.net/weixin_40313634/article/details/96181387

问题: 安装 selenium 报错

  • 环境: python 3.7.3(python --version)
  • 操作: pip install selenium
  • 报错:
代码语言:javascript复制
 ERROR: Could not find a version that satisfies the requirement selenium (from versions: none)
ERROR: No matching distribution found for selenium

解决:

  • 方法1:增大超时时间
代码语言:javascript复制
pip --default-timeout=100 install selenium
  • 方法2:修改安装源为清华安装源
代码语言:javascript复制
pip install --index https://mirrors.ustc.edu.cn/pypi/web/simple/  selenium

我的博客即将同步至腾讯云 社区,邀请大家一同入驻: https://cloud.tencent.com/developer/support-plan?invite_code=3gyyrlkysnc4k

0 人点赞