PyTorch 安装 - PiP - 错误

PyTorch Installation - PiP - Erorr

尝试安装 PyTorch 时,输入命令:

pip3 install torch==1.10.2+cu113 torchvision==0.11.3+cu113 torchaudio===0.10.2+cu113 -f https://download.pytorch.org/whl/cu113/torch_stable.html

我收到以下错误

Error - "The Package index page used does not have a proper HTML doctype declaration."

它还说要联系包索引的所有者,以解决此问题。 https://github.com/pypa/pip/issues/10825

有什么解决办法吗?我想安装 PyTorch

编辑: 我下载了最新版本的 pip,pip 22.0.3

这似乎是 pip==22.0.{0,1,2,3} 的一个持续问题(使用 pip3 --versionpip --version 确认您的 pip 版本)。他们开始了一个迁移过程以删除 HTML 解析器 1, but it seems like PyTorch didn't notice and now they're trying to solve it (this 是 GitHub 问题,他们正在跟踪此事的进展)。

目前,您似乎有以下选择:

  1. 尝试通过添加此标志来使用 pip install 命令:--use-deprecated=html5lib。例如:

    pip3 install --use-deprecated=html5lib torch==1.10.2+cu113 -f https://download.pytorch.org/whl/cu113/torch_stable.html
    
  2. 将 pip 降级到“非22.0.*”版本。似乎推荐的方法是使用 Python 版本 2:

    附带的版本
    python -m pip uninstall pip && python -m ensurepip
    

    然后,正常使用pip install ...命令

  3. 使用不同的技术安装 PyTorch。