无法安装PyTorch 1.7.0

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

我需要安装这四个软件包(以运行此代码):

!pip install allennlp==1.3
!pip install transformers==4.0.0
!pip install torch==1.7.0
!pip install networkx

这些命令适用于 Jupyter Notebook,但我需要为该项目使用 GPU。当我在 Google Colab、Kaggle Kernel 和 Deepnote 中运行它时,出现以下错误:

错误:找不到满足 torch==1.7.0 要求的版本(来自版本:1.11.0、1.12.0、1.12.1、1.13.0、1.13.1、2.0.0、2.0.1、 2.1.0、2.1.1、2.1.2)错误:找不到 torch==1.7.0 的匹配发行版

运行这些(由其他帖子建议)仍然会产生错误:

!pip install torch==1.7.0 -f https://download.pytorch.org/whl/torch_stable.html 
!pip install torch==1.8.0+cu111 torchvision==0.9.0+cu111 torchaudio==0.8.0 -f https://download.pytorch.org/whl/torch_stable.html

我还尝试了here的代理修复,但我尝试过的 30 个代理均不起作用。

如何在提供免费 GPU 访问的平台上安装 PyTorch 1.7.0?

python installation pytorch gpu google-colaboratory
1个回答
0
投票

考虑将 Colab 上的 Python 版本更新为旧版本(例如 3.8),

我尝试了Python 3.8,效果很好。

参见:

这里是我更新版本所遵循的方法。

© www.soinside.com 2019 - 2024. All rights reserved.