鱼C论坛

 找回密码
 立即注册
查看: 1156|回复: 14

[已解决]pip更新

[复制链接]
发表于 2020-5-20 13:57:05 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
本帖最后由 焦健鬼 于 2020-5-20 13:58 编辑

最近pip都要把我搞崩溃了,求20.1.1的下载命令(不是pip install --upgrade pip)
最佳答案
2020-5-20 14:19:32
本帖最后由 xiaosi4081 于 2020-5-20 14:23 编辑
焦健鬼 发表于 2020-5-20 14:12
@永恒的蓝色梦想 @老八秘制
求救求救

  1. pip install --user --upgrade pip
复制代码

或:
  1. python -m pip install -U --force-reinstall pip
复制代码

再或者:
1.卸载pip:
  1. python -m pip uninstall pip
复制代码

2.安装pip:
  1. easy_install.exe pip
复制代码

本帖被以下淘专辑推荐:

小甲鱼最新课程 -> https://ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2020-5-20 13:58:01 | 显示全部楼层
报错如下:
  1. ERROR: Exception:
  2. Traceback (most recent call last):
  3.   File "C:\Users\hp580-3djj\AppData\Roaming\Python\Python38\site-packages\pip\_vendor\urllib3\response.py", line 425, in _error_catcher
  4.     yield
  5.   File "C:\Users\hp580-3djj\AppData\Roaming\Python\Python38\site-packages\pip\_vendor\urllib3\response.py", line 507, in read
  6.     data = self._fp.read(amt) if not fp_closed else b""
  7.   File "C:\Users\hp580-3djj\AppData\Roaming\Python\Python38\site-packages\pip\_vendor\cachecontrol\filewrapper.py", line 62, in read
  8.     data = self.__fp.read(amt)
  9.   File "c:\jeff_work\python_install\lib\http\client.py", line 454, in read
  10.     n = self.readinto(b)
  11.   File "c:\jeff_work\python_install\lib\http\client.py", line 498, in readinto
  12.     n = self.fp.readinto(b)
  13.   File "c:\jeff_work\python_install\lib\socket.py", line 669, in readinto
  14.     return self._sock.recv_into(b)
  15.   File "c:\jeff_work\python_install\lib\ssl.py", line 1241, in recv_into
  16.     return self.read(nbytes, buffer)
  17.   File "c:\jeff_work\python_install\lib\ssl.py", line 1099, in read
  18.     return self._sslobj.read(len, buffer)
  19. socket.timeout: The read operation timed out

  20. During handling of the above exception, another exception occurred:

  21. Traceback (most recent call last):
  22.   File "C:\Users\hp580-3djj\AppData\Roaming\Python\Python38\site-packages\pip\_internal\cli\base_command.py", line 188, in _main
  23.     status = self.run(options, args)
  24.   File "C:\Users\hp580-3djj\AppData\Roaming\Python\Python38\site-packages\pip\_internal\cli\req_command.py", line 185, in wrapper
  25.     return func(self, options, args)
  26.   File "C:\Users\hp580-3djj\AppData\Roaming\Python\Python38\site-packages\pip\_internal\commands\install.py", line 332, in run
  27.     requirement_set = resolver.resolve(
  28.   File "C:\Users\hp580-3djj\AppData\Roaming\Python\Python38\site-packages\pip\_internal\resolution\legacy\resolver.py", line 179, in resolve
  29.     discovered_reqs.extend(self._resolve_one(requirement_set, req))
  30.   File "C:\Users\hp580-3djj\AppData\Roaming\Python\Python38\site-packages\pip\_internal\resolution\legacy\resolver.py", line 362, in _resolve_one
  31.     abstract_dist = self._get_abstract_dist_for(req_to_install)
  32.   File "C:\Users\hp580-3djj\AppData\Roaming\Python\Python38\site-packages\pip\_internal\resolution\legacy\resolver.py", line 314, in _get_abstract_dist_for
  33.     abstract_dist = self.preparer.prepare_linked_requirement(req)
  34.   File "C:\Users\hp580-3djj\AppData\Roaming\Python\Python38\site-packages\pip\_internal\operations\prepare.py", line 410, in prepare_linked_requirement
  35.     local_file = unpack_url(
  36.   File "C:\Users\hp580-3djj\AppData\Roaming\Python\Python38\site-packages\pip\_internal\operations\prepare.py", line 194, in unpack_url
  37.     file = get_http_url(
  38.   File "C:\Users\hp580-3djj\AppData\Roaming\Python\Python38\site-packages\pip\_internal\operations\prepare.py", line 123, in get_http_url
  39.     from_path, content_type = _download_http_url(
  40.   File "C:\Users\hp580-3djj\AppData\Roaming\Python\Python38\site-packages\pip\_internal\operations\prepare.py", line 220, in _download_http_url
  41.     for chunk in download.chunks:
  42.   File "C:\Users\hp580-3djj\AppData\Roaming\Python\Python38\site-packages\pip\_internal\cli\progress_bars.py", line 166, in iter
  43.     for x in it:
  44.   File "C:\Users\hp580-3djj\AppData\Roaming\Python\Python38\site-packages\pip\_internal\network\utils.py", line 15, in response_chunks
  45.     for chunk in response.raw.stream(
  46.   File "C:\Users\hp580-3djj\AppData\Roaming\Python\Python38\site-packages\pip\_vendor\urllib3\response.py", line 564, in stream
  47.     data = self.read(amt=amt, decode_content=decode_content)
  48.   File "C:\Users\hp580-3djj\AppData\Roaming\Python\Python38\site-packages\pip\_vendor\urllib3\response.py", line 529, in read
  49.     raise IncompleteRead(self._fp_bytes_read, self.length_remaining)
  50.   File "c:\jeff_work\python_install\lib\contextlib.py", line 131, in __exit__
  51.     self.gen.throw(type, value, traceback)
  52.   File "C:\Users\hp580-3djj\AppData\Roaming\Python\Python38\site-packages\pip\_vendor\urllib3\response.py", line 430, in _error_catcher
  53.     raise ReadTimeoutError(self._pool, None, "Read timed out.")
  54. pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Read timed out.
  55. WARNING: You are using pip version 20.1; however, version 20.1.1 is available.
  56. You should consider upgrading via the 'c:\jeff_work\python_install\python.exe -m pip install --upgrade pip' command.
复制代码
小甲鱼最新课程 -> https://ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-5-20 14:01:33 | 显示全部楼层
执行这条命令:
  1. python.exe-m pip install--upgrade pip
复制代码
小甲鱼最新课程 -> https://ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-5-20 14:02:09 | 显示全部楼层

还是报错,我一开始就是这么执行的
小甲鱼最新课程 -> https://ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-5-20 14:02:49 | 显示全部楼层
我觉得我应该下一个那个什么an什么东西的包
小甲鱼最新课程 -> https://ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-5-20 14:02:51 From FishC Mobile | 显示全部楼层
最后一行提示得很明显了
  1. c:\jeff_work\python_install\python.exe -m pip install --upgrade pip
复制代码
小甲鱼最新课程 -> https://ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-5-20 14:03:14 | 显示全部楼层
以管理员身份运行cmd,要是还不行就用Windows Powershell
小甲鱼最新课程 -> https://ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-5-20 14:05:59 | 显示全部楼层
焦健鬼 发表于 2020-5-20 14:02
我觉得我应该下一个那个什么an什么东西的包

你是要下什么库
小甲鱼最新课程 -> https://ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-5-20 14:07:32 | 显示全部楼层
hrp 发表于 2020-5-20 14:02
最后一行提示得很明显了
  1. Traceback (most recent call last):
  2.   File "C:\Users\hp580-3djj\AppData\Roaming\Python\Python38\site-packages\pip\_vendor\urllib3\response.py", line 425, in _error_catcher
  3.     yield
  4.   File "C:\Users\hp580-3djj\AppData\Roaming\Python\Python38\site-packages\pip\_vendor\urllib3\response.py", line 507, in read
  5.     data = self._fp.read(amt) if not fp_closed else b""
  6.   File "C:\Users\hp580-3djj\AppData\Roaming\Python\Python38\site-packages\pip\_vendor\cachecontrol\filewrapper.py", line 62, in read
  7.     data = self.__fp.read(amt)
  8.   File "c:\jeff_work\python_install\lib\http\client.py", line 454, in read
  9.     n = self.readinto(b)
  10.   File "c:\jeff_work\python_install\lib\http\client.py", line 498, in readinto
  11.     n = self.fp.readinto(b)
  12.   File "c:\jeff_work\python_install\lib\socket.py", line 669, in readinto
  13.     return self._sock.recv_into(b)
  14.   File "c:\jeff_work\python_install\lib\ssl.py", line 1241, in recv_into
  15.     return self.read(nbytes, buffer)
  16.   File "c:\jeff_work\python_install\lib\ssl.py", line 1099, in read
  17.     return self._sslobj.read(len, buffer)
  18. socket.timeout: The read operation timed out

  19. During handling of the above exception, another exception occurred:

  20. Traceback (most recent call last):
  21.   File "C:\Users\hp580-3djj\AppData\Roaming\Python\Python38\site-packages\pip\_internal\cli\base_command.py", line 188, in _main
  22.     status = self.run(options, args)
  23.   File "C:\Users\hp580-3djj\AppData\Roaming\Python\Python38\site-packages\pip\_internal\cli\req_command.py", line 185, in wrapper
  24.     return func(self, options, args)
  25.   File "C:\Users\hp580-3djj\AppData\Roaming\Python\Python38\site-packages\pip\_internal\commands\install.py", line 332, in run
  26.     requirement_set = resolver.resolve(
  27.   File "C:\Users\hp580-3djj\AppData\Roaming\Python\Python38\site-packages\pip\_internal\resolution\legacy\resolver.py", line 179, in resolve
  28.     discovered_reqs.extend(self._resolve_one(requirement_set, req))
  29.   File "C:\Users\hp580-3djj\AppData\Roaming\Python\Python38\site-packages\pip\_internal\resolution\legacy\resolver.py", line 362, in _resolve_one
  30.     abstract_dist = self._get_abstract_dist_for(req_to_install)
  31.   File "C:\Users\hp580-3djj\AppData\Roaming\Python\Python38\site-packages\pip\_internal\resolution\legacy\resolver.py", line 314, in _get_abstract_dist_for
  32.     abstract_dist = self.preparer.prepare_linked_requirement(req)
  33.   File "C:\Users\hp580-3djj\AppData\Roaming\Python\Python38\site-packages\pip\_internal\operations\prepare.py", line 410, in prepare_linked_requirement
  34.     local_file = unpack_url(
  35.   File "C:\Users\hp580-3djj\AppData\Roaming\Python\Python38\site-packages\pip\_internal\operations\prepare.py", line 194, in unpack_url
  36.     file = get_http_url(
  37.   File "C:\Users\hp580-3djj\AppData\Roaming\Python\Python38\site-packages\pip\_internal\operations\prepare.py", line 123, in get_http_url
  38.     from_path, content_type = _download_http_url(
  39.   File "C:\Users\hp580-3djj\AppData\Roaming\Python\Python38\site-packages\pip\_internal\operations\prepare.py", line 220, in _download_http_url
  40.     for chunk in download.chunks:
  41.   File "C:\Users\hp580-3djj\AppData\Roaming\Python\Python38\site-packages\pip\_internal\cli\progress_bars.py", line 166, in iter
  42.     for x in it:
  43.   File "C:\Users\hp580-3djj\AppData\Roaming\Python\Python38\site-packages\pip\_internal\network\utils.py", line 15, in response_chunks
  44.     for chunk in response.raw.stream(
  45.   File "C:\Users\hp580-3djj\AppData\Roaming\Python\Python38\site-packages\pip\_vendor\urllib3\response.py", line 564, in stream
  46.     data = self.read(amt=amt, decode_content=decode_content)
  47.   File "C:\Users\hp580-3djj\AppData\Roaming\Python\Python38\site-packages\pip\_vendor\urllib3\response.py", line 529, in read
  48.     raise IncompleteRead(self._fp_bytes_read, self.length_remaining)
  49.   File "c:\jeff_work\python_install\lib\contextlib.py", line 131, in __exit__
  50.     self.gen.throw(type, value, traceback)
  51.   File "C:\Users\hp580-3djj\AppData\Roaming\Python\Python38\site-packages\pip\_vendor\urllib3\response.py", line 430, in _error_catcher
  52.     raise ReadTimeoutError(self._pool, None, "Read timed out.")
  53. pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Read timed out.
复制代码
小甲鱼最新课程 -> https://ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-5-20 14:09:27 | 显示全部楼层

pip --default-timeout=100 install 库名称 -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com
小甲鱼最新课程 -> https://ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-5-20 14:10:28 | 显示全部楼层
xiaosi4081 发表于 2020-5-20 14:09
pip --default-timeout=100 install 库名称 -i http://pypi.douban.com/simple/ --trusted-host pypi.dou ...

我要更新pip
小甲鱼最新课程 -> https://ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-5-20 14:12:24 | 显示全部楼层
小甲鱼最新课程 -> https://ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-5-20 14:19:32 | 显示全部楼层    本楼为最佳答案   
本帖最后由 xiaosi4081 于 2020-5-20 14:23 编辑
焦健鬼 发表于 2020-5-20 14:12
@永恒的蓝色梦想 @老八秘制
求救求救

  1. pip install --user --upgrade pip
复制代码

或:
  1. python -m pip install -U --force-reinstall pip
复制代码

再或者:
1.卸载pip:
  1. python -m pip uninstall pip
复制代码

2.安装pip:
  1. easy_install.exe pip
复制代码
小甲鱼最新课程 -> https://ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-5-20 14:24:56 | 显示全部楼层
  1. Traceback (most recent call last):
  2.   File "C:\Users\hp580-3djj\AppData\Roaming\Python\Python38\site-packages\pip\_vendor\urllib3\response.py", line 425, in _error_catcher
  3.     yield
  4.   File "C:\Users\hp580-3djj\AppData\Roaming\Python\Python38\site-packages\pip\_vendor\urllib3\response.py", line 507, in read
  5.     data = self._fp.read(amt) if not fp_closed else b""
  6.   File "C:\Users\hp580-3djj\AppData\Roaming\Python\Python38\site-packages\pip\_vendor\cachecontrol\filewrapper.py", line 62, in read
  7.     data = self.__fp.read(amt)
  8.   File "c:\jeff_work\python_install\lib\http\client.py", line 454, in read
  9.     n = self.readinto(b)
  10.   File "c:\jeff_work\python_install\lib\http\client.py", line 498, in readinto
  11.     n = self.fp.readinto(b)
  12.   File "c:\jeff_work\python_install\lib\socket.py", line 669, in readinto
  13.     return self._sock.recv_into(b)
  14.   File "c:\jeff_work\python_install\lib\ssl.py", line 1241, in recv_into
  15.     return self.read(nbytes, buffer)
  16.   File "c:\jeff_work\python_install\lib\ssl.py", line 1099, in read
  17.     return self._sslobj.read(len, buffer)
  18. socket.timeout: The read operation timed out

  19. During handling of the above exception, another exception occurred:

  20. Traceback (most recent call last):
  21.   File "C:\Users\hp580-3djj\AppData\Roaming\Python\Python38\site-packages\pip\_internal\cli\base_command.py", line 188, in _main
  22.     status = self.run(options, args)
  23.   File "C:\Users\hp580-3djj\AppData\Roaming\Python\Python38\site-packages\pip\_internal\cli\req_command.py", line 185, in wrapper
  24.     return func(self, options, args)
  25.   File "C:\Users\hp580-3djj\AppData\Roaming\Python\Python38\site-packages\pip\_internal\commands\install.py", line 332, in run
  26.     requirement_set = resolver.resolve(
  27.   File "C:\Users\hp580-3djj\AppData\Roaming\Python\Python38\site-packages\pip\_internal\resolution\legacy\resolver.py", line 179, in resolve
  28.     discovered_reqs.extend(self._resolve_one(requirement_set, req))
  29.   File "C:\Users\hp580-3djj\AppData\Roaming\Python\Python38\site-packages\pip\_internal\resolution\legacy\resolver.py", line 362, in _resolve_one
  30.     abstract_dist = self._get_abstract_dist_for(req_to_install)
  31.   File "C:\Users\hp580-3djj\AppData\Roaming\Python\Python38\site-packages\pip\_internal\resolution\legacy\resolver.py", line 314, in _get_abstract_dist_for
  32.     abstract_dist = self.preparer.prepare_linked_requirement(req)
  33.   File "C:\Users\hp580-3djj\AppData\Roaming\Python\Python38\site-packages\pip\_internal\operations\prepare.py", line 410, in prepare_linked_requirement
  34.     local_file = unpack_url(
  35.   File "C:\Users\hp580-3djj\AppData\Roaming\Python\Python38\site-packages\pip\_internal\operations\prepare.py", line 194, in unpack_url
  36.     file = get_http_url(
  37.   File "C:\Users\hp580-3djj\AppData\Roaming\Python\Python38\site-packages\pip\_internal\operations\prepare.py", line 123, in get_http_url
  38.     from_path, content_type = _download_http_url(
  39.   File "C:\Users\hp580-3djj\AppData\Roaming\Python\Python38\site-packages\pip\_internal\operations\prepare.py", line 220, in _download_http_url
  40.     for chunk in download.chunks:
  41.   File "C:\Users\hp580-3djj\AppData\Roaming\Python\Python38\site-packages\pip\_internal\cli\progress_bars.py", line 166, in iter
  42.     for x in it:
  43.   File "C:\Users\hp580-3djj\AppData\Roaming\Python\Python38\site-packages\pip\_internal\network\utils.py", line 15, in response_chunks
  44.     for chunk in response.raw.stream(
  45.   File "C:\Users\hp580-3djj\AppData\Roaming\Python\Python38\site-packages\pip\_vendor\urllib3\response.py", line 564, in stream
  46.     data = self.read(amt=amt, decode_content=decode_content)
  47.   File "C:\Users\hp580-3djj\AppData\Roaming\Python\Python38\site-packages\pip\_vendor\urllib3\response.py", line 529, in read
  48.     raise IncompleteRead(self._fp_bytes_read, self.length_remaining)
  49.   File "c:\jeff_work\python_install\lib\contextlib.py", line 131, in __exit__
  50.     self.gen.throw(type, value, traceback)
  51.   File "C:\Users\hp580-3djj\AppData\Roaming\Python\Python38\site-packages\pip\_vendor\urllib3\response.py", line 430, in _error_catcher
  52.     raise ReadTimeoutError(self._pool, None, "Read timed out.")
  53. pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Read timed out.
复制代码
小甲鱼最新课程 -> https://ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-5-20 14:31:01 From FishC Mobile | 显示全部楼层
焦健鬼 发表于 2020-5-20 14:07
  1. c:\jeff_work\python_install\python.exe -m pip install -i http://pypi.douban.com/simple/ --upgrade pip
复制代码
小甲鱼最新课程 -> https://ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-6-21 09:47

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表