Pip 无法找到文件并安装库

问题描述 投票:0回答:1

我正在尝试安装 python 库(我正在使用 PyCharm),但有些事情发生了变化,Pip 一直拒绝工作。
我不知道发生了什么变化/为什么,但每次我尝试安装库时,都会收到以下错误:

WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProtocolError('Connection aborted.', FileNotFoundError(2, 'No such file or directory'))': /simple/pandas/
WARNING: Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProtocolError('Connection aborted.', FileNotFoundError(2, 'No such file or directory'))': /simple/pandas/
WARNING: Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProtocolError('Connection aborted.', FileNotFoundError(2, 'No such file or directory'))': /simple/pandas/
WARNING: Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProtocolError('Connection aborted.', FileNotFoundError(2, 'No such file or directory'))': /simple/pandas/
WARNING: Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProtocolError('Connection aborted.', FileNotFoundError(2, 'No such file or directory'))': /simple/pandas/
ERROR: Could not find a version that satisfies the requirement pandas (from versions: none)
ERROR: No matching distribution found for pandas

确切错误

我尝试过弄乱代理设置、使用强制、使用路径而不是别名、下载 .whl 文件、删除并重新安装等,但没有任何效果。
根据错误,这似乎是路径问题和/或解释器问题,但我无法修复它。
如果我可以提供更多信息,请告诉我。

python pip pycharm
1个回答
0
投票

您的 Python 环境可能已损坏或配置错误。请尝试:

清除 pip 缓存:有时 pip 缓存可能会导致安装问题。

pip cache purge

检查 Python 环境:确保 PyCharm 使用正确的 Python 解释器。在 PyCharm 中,转到设置 > 项目:[您的项目] > Python 解释器,并验证解释器是否已正确配置并指向正确的环境(例如,虚拟环境或全局 Python 安装)。

升级 pip、Setuptools 和 Wheel:确保您的 pip 和其他相关软件包是最新的。

pip install --upgrade pip setuptools wheel

手动安装滚轮:如果问题仍未解决,请尝试直接下载滚轮(.whl)文件

pip install path_to_whl_file.whl

如果这些解决方案都不起作用,您可能需要尝试重新创建虚拟环境:

  • 删除当前的虚拟环境。
  • 在 PyCharm 中创建一个新的虚拟环境。
  • 再次安装所需的库。
  • 尝试使用设置库版本
    pip install pandas==2.3.2
    (您需要将“2.3.2”替换为您要安装的实际版本)
© www.soinside.com 2019 - 2024. All rights reserved.