zoukankan      html  css  js  c++  java
  • python 使用国内镜像下载插件及报错Could not fetch URL https://pypi.org/simple/pywinauto/: There was a problem co解决方法

    现在使用的是豆瓣的镜像下载的pandas插件 

    pip3 install --index-url https://pypi.douban.com/simple pandas


    国内的其他镜像源
    清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/
    阿里云 http://mirrors.aliyun.com/pypi/simple/
    中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/
    豆瓣(douban) http://pypi.douban.com/simple/
    中国科学技术大学 http://pypi.mirrors.ustc.edu.cn/simple/

    原文链接:https://blog.csdn.net/yanyanwenmeng/article/details/94222284

    ---------------------------------

    报错Could not fetch URL https://pypi.org/simple/pywinauto/: There was a problem co解决方法

    参考:https://blog.csdn.net/abracadabraa/article/details/103798322

    pip安装一个第三方的库,就一直报错: Could not fetch URL https://pypi.org/simple/xrld/: There was a problem confirming the ssl certificate: HTTPSConnectionPool(host=‘pypi.org’, port=443): Max retries exceeded with url: /simple/xrld/ (Caused by SSLError(SSLError(1, ‘[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:833)’),)) - skipping

    研究了好久只知道是证书的错误~按照度娘的指导尝试了如下方案:
    1.第一种尝试方式:直接下载get-pip.py文件,执行命令python get-pip.py 结果是:失败
    2.第二种尝试方式:加上–trusted-host 执行 pip install xrld -i https://pypi.org/simple --trusted-host pypi.org 结果是:失败
    3.第三种尝试:发现是url的来源的问题,换成了国内的pip源就可以正常安装了,我使用的是:pip install pywinauto -i http://pypi.douban.com/simple --trusted-host pypi.douban.com,结果:Duang!Duang!Duang~成功

    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/ 中国科学技术大学

     
     
  • 相关阅读:
    zend guard加密使用方法
    在网页中嵌入任意字体(特殊字体/自定义字体)的解决方案
    lamp一键安装包
    PHP错误“This file has expired”的解决方法
    php采集
    smarty建的mvc环境
    sql语句操作数据库重复数据
    古语:花繁柳密处拨得开,才是手段;风狂雨急时立的定,方显脚跟。
    获取日期的jquery.ui.datepicker
    el表达式简介
  • 原文地址:https://www.cnblogs.com/erchun/p/12574875.html
Copyright © 2011-2022 走看看