zoukankan      html  css  js  c++  java
  • python pip安装报错: ConnectTimeoutError

    错误:

    解决方案:

     使用镜像:pip install xxxx -i https://pypi.douban.com/simple 
    如:pip3 install --upgrade tensorflow -i https://pypi.douban.com/simple 
     
    错误信息:
     Traceback (most recent call last):
      File "d:programspython35libsite-packagespip\_vendor equestspackagesurllib3response.py 

    ", line 226, in _error_catcher
        yield
      File "d:programspython35libsite-packagespip\_vendor equestspackagesurllib3response.py 

    ", line 301, in read
        data = self._fp.read(amt)
      File "d:programspython35libsite-packagespip\_vendorcachecontrolfilewrapper.py 

    ", line 49, in read
        data = self.__fp.read(amt)
      File "d:programspython35libhttpclient.py 

    ", line 448, in read
        n = self.readinto(b)
      File "d:programspython35libhttpclient.py 

    ", line 488, in readinto
        n = self.fp.readinto(b)
      File "d:programspython35libsocket.py 

    ", line 575, in readinto
        return self._sock.recv_into(b)
      File "d:programspython35libssl.py 

    ", line 929, in recv_into
        return self.read(nbytes, buffer)
      File "d:programspython35libssl.py 

    ", line 791, in read
        return self._sslobj.read(len, buffer)
      File "d:programspython35libssl.py 

    ", line 575, in read
        v = self._sslobj.read(len, buffer)
    socket.timeout: The read operation timed out

    During handling of the above exception, another exception occurred:

    Traceback (most recent call last):
      File "d:programspython35libsite-packagespipbasecommand.py 

    ", line 209, in main
        status = self.run(options, args)
      File "d:programspython35libsite-packagespipcommandsinstall.py 

    ", line 299, in run
        requirement_set.prepare_files(finder)
      File "d:programspython35libsite-packagespip eq eq_set.py 

    ", line 360, in prepare_files
        ignore_dependencies=self.ignore_dependencies))
      File "d:programspython35libsite-packagespip eq eq_set.py 

    ", line 577, in _prepare_file
        session=self.session, hashes=hashes)
      File "d:programspython35libsite-packagespipdownload.py 

    ", line 810, in unpack_url
        hashes=hashes
      File "d:programspython35libsite-packagespipdownload.py 

    ", line 649, in unpack_http_url
        hashes)
      File "d:programspython35libsite-packagespipdownload.py 

    ", line 871, in _download_http_url
        _download_url(resp, link, content_file, hashes)
      File "d:programspython35libsite-packagespipdownload.py 

    ", line 595, in _download_url
        hashes.check_against_chunks(downloaded_chunks)
      File "d:programspython35libsite-packagespiputilshashes.py 

    ", line 46, in check_against_chunks
        for chunk in chunks:
      File "d:programspython35libsite-packagespipdownload.py 

    ", line 563, in written_chunks
        for chunk in chunks:
      File "d:programspython35libsite-packagespiputilsui.py 

    ", line 139, in iter
        for x in it:
      File "d:programspython35libsite-packagespipdownload.py 

    ", line 552, in resp_read
        decode_content=False):
      File "d:programspython35libsite-packagespip\_vendor equestspackagesurllib3response.py 

    ", line 344, in stream
        data = self.read(amt=amt, decode_content=decode_content)
      File "d:programspython35libsite-packagespip\_vendor equestspackagesurllib3response.py 

    ", line 311, in read
        flush_decoder = True
      File "d:programspython35libcontextlib.py 

    ", line 77, in __exit__
        self.gen.throw(type, value, traceback)
      File "d:programspython35libsite-packagespip\_vendor equestspackagesurllib3response.py 

    ", line 231, in _error_catcher
        raise ReadTimeoutError(self._pool, None, 'Read timed out.')
    pip._vendor.requests.packages.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host='files.pythonhosted.org 

    ', port=443): Read timed out.
  • 相关阅读:
    开放源码的对象关系映射工具ORM.NET 插入数据 Insert/Update Data
    开放源码的对象关系映射工具ORM.NET 快档开发入门 Quick Start
    .NET 动态脚本语言Script.NET 开发指南
    开放源码的对象关系映射工具ORM.NET 删除数据 Deleting Records using ORM.NET
    .NET Remoting过时了吗?为什么公司的项目还是选择用.NET Remoting,而不是WCF?
    开放源码的对象关系映射工具ORM.NET 查看和显示数据 View and Display data using ORM.NET
    开放源码的对象关系映射工具ORM.NET 查询表 调用存储过程 增加自定义代码
    技术人生:坚持,每日一博
    CQRS:CQRS + DDD + MDP 实现快速应用程序开发
    NodeJs:Happy代码生成器,重构了代码,更新了文档,完善了示例,欢迎下载使用
  • 原文地址:https://www.cnblogs.com/xianhan/p/9084838.html
Copyright © 2011-2022 走看看