jupyter Could not find a version that satisfies the requirement torch (from versions: none)
时间: 2023-11-11 12:05:24 浏览: 109
这个错误提示表明你的环境中没有安装 PyTorch,你需要先安装 PyTorch 才能使用它。你可以通过以下命令安装 PyTorch:
```
pip install torch
```
如果你使用的是 GPU 版本的 PyTorch,可以使用以下命令安装:
```
pip install torch torchvision torchaudio -f https://download.pytorch.org/whl/cu111/torch_stable.html
```
请注意,GPU 版本的 PyTorch 需要 CUDA 支持,你需要先安装 CUDA 和 cuDNN。
阅读全文