【Python】IntelliJ IDEA安装第三方包使用pip报错:Could not fetch URL

在使用IntelliJ IDEA通过pip安装selenium时遇到SSL错误,导致无法从pypi.org获取包。错误信息显示SSLError,可能由于SSL证书问题。解决方法包括指定安装特定版本的selenium,例如3.141.59,或者更改pip源,如使用阿里云或中国科技大学等国内镜像地址进行安装。
摘要由CSDN通过智能技术生成

【Python】IntelliJ IDEA安装第三方包使用pip报错:Could not fetch URL

在IntelliJ IDEA平台pip命令安装第三方包selenium时出现如下错误:

>pip install selenium
WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError(SSLEOFError(8, 'EOF occurred i
n violation of protocol (_ssl.c:1125)'))': /simple/selenium/
WARNING: Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError(SSLEOFError(8, 'EOF occurred i
n violation of protocol (_ssl.c:1125)'))': /simple/selenium/
WARNING: Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError(SSLEOFError(8, 'EOF occurred i
n violation of protocol (_ssl.c:1125)'))': /simple/selenium/
WARNING: Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError(SSLEOFError(8, 'EOF occurred i
n violation of protocol (_ssl.c:1125)'))': /simple/selenium/
WARNING: Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError(SSLEOFError(8, 'EOF occurred i
n violation of protocol (_ssl.c:1125)'))': /simple/selenium/
Could not fetch URL https://pypi.org/simple/selenium/: There was a problem confirming the ssl certificate: HTTPSConnectionPool(host='pypi.org', port=443):
Max retries exceeded with url: /simple/selenium/ (Caused by SSLError(SSLEOFError(8, 'EOF occurred in violation of protocol (_ssl.c:1125)'))) - skipping
ERROR: Could not find a version that satisfies the requirement selenium==3.141.59
ERROR: No matching distribution found for selenium==3.141.59
Could not fetch URL https://pypi.org/simple/pip/: There was a problem confirming the ssl certificate: HTTPSConnectionPool(host='pypi.org', port=443): Max r
etries exceeded with url: /simple/pip/ (Caused by SSLError(SSLEOFError(8, 'EOF occurred in violation of protocol (_ssl.c:1125)'))) - skipping

主要有两个解决方法:

1、指定安装版本

输入命令:pip install selenium==(指定任一版本)
以selenium为例(3.141.59是当前最新版本):

pip install selenium==3.141.59

2、指定地址

仍以selenium为例:

pip install selenium -i http://pypi.douban.com/simple --trusted-host pypi.douban.com

镜像地址:

  1. http://mirrors.aliyun.com/pypi/simple/ 阿里云
  2. https://pypi.mirrors.ustc.edu.cn/simple/ 中国科技大学
  3. http://pypi.douban.com/simple/ 豆瓣
  4. https://pypi.tuna.tsinghua.edu.cn/simple/ 清华大学
  5. http://pypi.mirrors.ustc.edu.cn/simple/ 中国科学技术大学
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值