国产 无码 综合区,色欲AV无码国产永久播放,无码天堂亚洲国产AV,国产日韩欧美女同一区二区

Python安裝selenium時報錯:ERROR: No matching distribution found for selenium 附解決方法

這篇具有很好參考價值的文章主要介紹了Python安裝selenium時報錯:ERROR: No matching distribution found for selenium 附解決方法。希望對大家有所幫助。如果存在錯誤或未考慮完全的地方,請大家不吝賜教,您也可以點擊"舉報違法"按鈕提交疑問。

報錯如下:

pip install -i https://pypi.douban.com/simple selenium
Looking in indexes: https://pypi.douban.com/simple
Could not fetch URL https://pypi.douban.com/simple/selenium/: There was a problem confirming the ssl certificate: HTTPSConnectionPool(host='pypi.douban.com', port=443): Max retries exceeded with url: /simple/selenium/ (Caused by SSLError(SSLEOFError(8, 'EOF occurred in violation of protocol (_ssl.c:777)'),)) - skipping
Could not fetch URL https://pypi.douban.com/simple/pip/: There was a problem confirming the ssl certificate: HTTPSConnectionPool(host='pypi.douban.com', port=443): Max retries exceeded with url: /simple/pip/ (Caused by SSLError(SSLEOFError(8, 'EOF occurred in violation of protocol (_ssl.c:777)'),)) - skipping

WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError(SSLEOFError(8, 'EOF occurred in violation of protocol (_ssl.c:777)'),)': /simple/selenium/
WARNING: Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError(SSLEOFError(8, 'EOF occurred in violation of protocol (_ssl.c:777)'),)': /simple/selenium/
WARNING: Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError(SSLEOFError(8, 'EOF occurred in violation of protocol (_ssl.c:777)'),)': /simple/selenium/
WARNING: Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError(SSLEOFError(8, 'EOF occurred in violation of protocol (_ssl.c:777)'),)': /simple/selenium/
WARNING: Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError(SSLEOFError(8, 'EOF occurred in violation of protocol (_ssl.c:777)'),)': /simple/selenium/
ERROR: Could not find a version that satisfies the requirement selenium (from versions: none)
ERROR: No matching distribution found for selenium

通過該方法可以成功解決報錯:文章來源地址http://www.zghlxwxcb.cn/news/detail-751348.html

pip install --index-url http://mirrors.aliyun.com/pypi/simple/ selenium --trusted-host mirrors.aliyun.com
Looking in indexes: http://mirrors.aliyun.com/pypi/simple/
Collecting selenium
  Downloading http://mirrors.aliyun.com/pypi/packages/80/d6/4294f0b4bce4de0abf13e17190289f9d0613b0a44e5dd6a7f5ca98459853/selenium-3.141.0-py2.py3-none-any.whl (904 kB)
Requirement already satisfied: urllib3 in c:\programdata\anaconda3\lib\site-packages (from selenium) (1.22)
Installing collected packages: selenium
Successfully installed selenium-3.141.0

到了這里,關于Python安裝selenium時報錯:ERROR: No matching distribution found for selenium 附解決方法的文章就介紹完了。如果您還想了解更多內容,請在右上角搜索TOY模板網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關文章,希望大家以后多多支持TOY模板網(wǎng)!

本文來自互聯(lián)網(wǎng)用戶投稿,該文觀點僅代表作者本人,不代表本站立場。本站僅提供信息存儲空間服務,不擁有所有權,不承擔相關法律責任。如若轉載,請注明出處: 如若內容造成侵權/違法違規(guī)/事實不符,請點擊違法舉報進行投訴反饋,一經(jīng)查實,立即刪除!

領支付寶紅包贊助服務器費用

相關文章

  • 解決MAC筆記本Stable Diffusion安裝時報No matching distribution found for tb-nightly的問題

    安裝時報如下錯誤: 重點看“No matching distribution found for tb-nightly”這個報錯。這個錯誤是說明,我們的pip源中沒有對應的“tb-nightly”依賴包。 查看pip的配置: pip config list ,看到配置如下: global.index-url=\\\'https://pypi.tuna.tsinghua.edu.cn/simple\\\' 這說明,使用的清華的pip源中缺少tb-

    2024年02月12日
    瀏覽(22)
  • 已解決ERROR: No matching distribution found for xpinyin

    已解決ERROR: No matching distribution found for xpinyin

    已解決(pip使用阿里云鏡像安裝第三方模塊失?。〦RROR: Could not find a version that satisfies the requirement xpinyin (from versions: none) ERROR: No matching distribution found for xpinyin WARNING: The repository located at mirrors.aliyun.com is not a trusted or secure host and is being ignored. If this repository is available via HTTPS w

    2023年04月20日
    瀏覽(21)
  • ERROR: No matching distribution found for gradio>=3.23

    ERROR: No matching distribution found for gradio>=3.23

    今天運行chatGPTweb項目的時候 跟下載其他包時候一樣使用清華源下載的時候,pip install gradio==3.23 -i https://pypi.python.org/pypi 然后, 報錯了 。 國內的鏡像源還沒有更新到 gradio=3.23,所以需要科學上網(wǎng),手動去pypi官網(wǎng)下載whl,然后通過whl下載即可。 1.從官網(wǎng)中下載gradio編譯的pyd文

    2024年02月11日
    瀏覽(23)
  • Python安裝tensorflow過程中出現(xiàn)“No matching distribution found for tensorflow”的解決辦法

    Python安裝tensorflow過程中出現(xiàn)“No matching distribution found for tensorflow”的解決辦法

    在Pycharm中使用 pip install tensorflow 安裝tensorflow時報錯: 搜了好多帖子有的說可能是網(wǎng)絡的問題,需要換國內的鏡像源來下載,于是改用清華源: 依舊沒用,折騰了好久,才發(fā)現(xiàn)我目前的Python版本是Python3.8(32位)的,可能是tensorflow對python3.8還不支持,所以得 降低python版本 (好

    2024年02月03日
    瀏覽(29)
  • 已解決ERROR: No matching distribution found for gradio==3.23

    已解決ERROR: No matching distribution found for gradio==3.23

    已解決stderr: ERROR: Could not find a version that satisfies the requirement gradio==3.23 ERROR: No matching distribution found for gradio==3.23 粉絲群里面的一個小伙伴遇到問題跑來私信我,想用pip安裝gradio ,但是發(fā)生了報錯(當時他心里瞬間涼了一大截,跑來找我求助,然后順利幫助他解決了,順便記

    2023年04月18日
    瀏覽(22)
  • jenkins構建時,報錯ERROR: No matching distribution found for pywin32==305

    最近用jenkin構建了一個任務,控制臺輸出,出現(xiàn)如下報錯信息: ERROR: Could not find a version that satisfies the requirement pywin32==305 (from versions: none) ERROR: No matching distribution found for pywin32==305 Build step \\\'Execute shell\\\' marked build as failure Finished: FAILURE ? 原因: requirement是需要導入的依賴包文件

    2023年04月27日
    瀏覽(26)
  • 解決報錯ERROR: No matching distribution found for torchvision==0.11.2+cu111

    解決報錯ERROR: No matching distribution found for torchvision==0.11.2+cu111

    目錄 一、猜測 二、驗證 三、解決方案 四、檢驗 該報錯是在按官網(wǎng)方法用指令: 安裝pytorch時出現(xiàn)的,以下是分析: 這個錯誤提示表明在指令提供的下載網(wǎng)址上沒有找到符合要求的torchvision軟件包版本,需要安裝符合要求的版本。問題可能出在指定的版本號(0.11.2+cu111),這

    2024年02月11日
    瀏覽(26)
  • 記一次pip下載包報錯ERROR: No matching distribution found for xxx時的解決方案

    記一次pip下載包報錯ERROR: No matching distribution found for xxx時的解決方案

    前言 當我們使用python自帶的pip安裝一些包時,可能會報以下錯誤: 出現(xiàn)這種情況有三種可能: 第一種可能: pip的版本過低,需要升級一下,可以執(zhí)行以下命令進行嘗試 第二種可能: 考慮可能是網(wǎng)速的原因,這時可以采用國內的鏡像源來加速 第三種可能: 檢查下是否開啟

    2024年02月11日
    瀏覽(34)
  • Android 安裝時報錯INSTALL_FAILED_NO_MATCHING_ABIS

    Android 安裝時報錯INSTALL_FAILED_NO_MATCHING_ABIS

    在安裝App到手機上是提示安裝錯誤:INSTALL_FAILED_NO_MATCHING_ABIS 錯誤原因:是由于使用了native libraries?。該native libraries?不支持當前的cpu的體系結構。 常見的cpu架構 通過adb shell 查看CPU架構: ?查看設備系統(tǒng)架構: armeabi-v7a 類型 查看CPU 詳情: 解決方法 如果當前app是我們自己開發(fā)的

    2024年01月17日
    瀏覽(18)
  • No matching distribution found for torch==1.10.1+cu111

    No matching distribution found for torch==1.10.1+cu111

    30系顯卡暫時不支持CUDA11以下版本,CUDA不支持當前顯卡的算力。 解決方法1:https://blog.csdn.net/weixin_43760844/article/details/115706289 解決方法2:conda下載cudatoolkit (貌似沒有解決問題, 嘿嘿, 可能只能卸載cuda了) 首先搜索安裝包的版本 然后安裝固定版本的cudatoolkit,我的cuda最高

    2024年02月07日
    瀏覽(25)

覺得文章有用就打賞一下文章作者

支付寶掃一掃打賞

博客贊助

微信掃一掃打賞

請作者喝杯咖啡吧~博客贊助

支付寶掃一掃領取紅包,優(yōu)惠每天領

二維碼1

領取紅包

二維碼2

領紅包