更新python pip 时提示操作超时错误

C:\Users\Administrator>python -m pip install --upgrade pip
Collecting pip
Downloading https://files.pythonhosted.org/packages/54/0c/d01aa759fdc501a58f431eb594a17495f15b88da142ce14b5845662c13f3/pip-20.0.2-py2.py3-none-any.whl (1.4MB)
|████ | 184kB 6.6kB/s eta 0:03:12ERROR: Exception:
Traceback (most recent call last):
File “D:\ProgramFiles\Python\Python38\lib\site-packages\pip_vendor\urllib3\response.py”, line 397, in _error_catcher
yield
File “D:\ProgramFiles\Python\Python38\lib\site-packages\pip_vendor\urllib3\response.py”, line 479, in read
data = self._fp.read(amt)
File “D:\ProgramFiles\Python\Python38\lib\site-packages\pip_vendor\cachecontrol\filewrapper.py”, line 62, in read
data = self.__fp.read(amt)
File “D:\ProgramFiles\Python\Python38\lib\http\client.py”, line 454, in read
n = self.readinto(b)
File “D:\ProgramFiles\Python\Python38\lib\http\client.py”, line 498, in readinto
n = self.fp.readinto(b)
File “D:\ProgramFiles\Python\Python38\lib\socket.py”, line 669, in readinto
return self._sock.recv_into(b)
File “D:\ProgramFiles\Python\Python38\lib\ssl.py”, line 1241, in recv_into
return self.read(nbytes, buffer)
File “D:\ProgramFiles\Python\Python38\lib\ssl.py”, line 1099, in read
return 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:\ProgramFiles\Python\Python38\lib\site-packages\pip_internal\cli\base_command.py”, line 188, in main
status = self.run(options, args)
File “D:\ProgramFiles\Python\Python38\lib\site-packages\pip_internal\commands\install.py”, line 345, in run
resolver.resolve(requirement_set)
File “D:\ProgramFiles\Python\Python38\lib\site-packages\pip_internal\legacy_resolve.py”, line 196, in resolve
self._resolve_one(requirement_set, req)
File “D:\ProgramFiles\Python\Python38\lib\site-packages\pip_internal\legacy_resolve.py”, line 359, in _resolve_one
abstract_dist = self._get_abstract_dist_for(req_to_install)
File “D:\ProgramFiles\Python\Python38\lib\site-packages\pip_internal\legacy_resolve.py”, line 305, in _get_abstract_dist_for
abstract_dist = self.preparer.prepare_linked_requirement(
File “D:\ProgramFiles\Python\Python38\lib\site-packages\pip_internal\operations\prepare.py”, line 195, in prepare_linked_requirement
unpack_url(
File “D:\ProgramFiles\Python\Python38\lib\site-packages\pip_internal\download.py”, line 1058, in unpack_url
unpack_http_url(
File “D:\ProgramFiles\Python\Python38\lib\site-packages\pip_internal\download.py”, line 920, in unpack_http_url
from_path, content_type = _download_http_url(link,
File “D:\ProgramFiles\Python\Python38\lib\site-packages\pip_internal\download.py”, line 1152, in _download_http_url
_download_url(resp, link, content_file, hashes, progress_bar)
File “D:\ProgramFiles\Python\Python38\lib\site-packages\pip_internal\download.py”, line 861, in _download_url
hashes.check_against_chunks(downloaded_chunks)
File “D:\ProgramFiles\Python\Python38\lib\site-packages\pip_internal\utils\hashes.py”, line 75, in check_against_chunks
for chunk in chunks:
File “D:\ProgramFiles\Python\Python38\lib\site-packages\pip_internal\download.py”, line 829, in written_chunks
for chunk in chunks:
File “D:\ProgramFiles\Python\Python38\lib\site-packages\pip_internal\utils\ui.py”, line 156, in iter
for x in it:
File “D:\ProgramFiles\Python\Python38\lib\site-packages\pip_internal\download.py”, line 794, in resp_read
for chunk in resp.raw.stream(
File “D:\ProgramFiles\Python\Python38\lib\site-packages\pip_vendor\urllib3\response.py”, line 531, in stream
data = self.read(amt=amt, decode_content=decode_content)
File “D:\ProgramFiles\Python\Python38\lib\site-packages\pip_vendor\urllib3\response.py”, line 496, in read
raise IncompleteRead(self._fp_bytes_read, self.length_remaining)
File “D:\ProgramFiles\Python\Python38\lib\contextlib.py”, line 131, in exit
self.gen.throw(type, value, traceback)
File “D:\ProgramFiles\Python\Python38\lib\site-packages\pip_vendor\urllib3\response.py”, line 402, in _error_catcher
raise ReadTimeoutError(self._pool, None, ‘Read timed out.’)
pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host=‘files.pythonhosted.org’, port=443): Read timed out.

出现上述问题时,输入下述指令:

python -m pip install --upgrade pip -i https://pypi.tuna.tsinghua.edu.cn/simple/

即可完成更新,在win7 32bit系统下亲测可用
在这里插入图片描述

Python `pip` 是 Python 包管理器,用于安装、升级和卸载 Python 包。如果你遇到 `pip` 安装包超时的情况,可能有以下几个原因: 1. **网络连接问题**:如果网络连接不稳定或速度慢,`pip` 下载包的速度会受到影响,导致安装过程超时。你可以尝试检查网络连接,或者使用代理服务器。 2. **包太大或源服务器问题**:有些包文件非常大,特别是对于那些包含许多依赖项的大型项目,下载间可能会很长。检查一下是否是这个原因。 3. **pip 设置问题**:确保 `pip` 的缓存目录有足够的空间,以及 `pip` 的全局缓存 (`~/.cache/pip`) 或临目录 (`/tmp` 或 `C:\Temp`,取决于操作系统)没有被其他进程占用。 4. **系统防火墙或代理设置**:如果你的系统设置了防火墙规则阻止 `pip` 访问某些地址,或者你的环境需要通过代理访问互联网,那么你需要配置正确的设置。 5. **pip 版本问题**:过旧的 `pip` 可能会有已知的 bug 导致安装超时更新到最新版本的 `pip` 可能会解决问题。 解决方法包括: - 检查网络状况并重启连接 - 尝试使用 `--no-cache-dir` 参数临禁用缓存 - 使用 `--upgrade-strategy=only-if-needed` 来减少不必要的下载 - 更新 pip 到最新版:`pip install --upgrade pip` - 指定国内镜像源(如阿里云或清华大学源):`pip install -i https://mirrors.aliyun.com/pypi/simple/`
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值