PackagesNotFoundError: The following packages are missing from the target environment: - cpuonly
时间: 2023-07-23 13:24:09 浏览: 166
anaconda安装pytorch时报错PackagesNotFoundError: The following packages are not available from current cha
5星 · 资源好评率100%
这个错误提示说明你所需要的 `cpuonly` 包在当前的环境中没有被安装。如果你需要在 CPU 上运行 PyTorch,可以尝试在命令行中使用以下命令安装最新版本的 PyTorch:
```
pip install torch torchvision torchaudio
```
如果你需要安装特定版本的 PyTorch,可以使用以下命令:
```
pip install torch==1.9.0 torchvision==0.10.0 torchaudio==0.9.0
```
注意:在安装时,确保你所使用的 Python 版本与你安装的 PyTorch 版本匹配,否则可能会出现不兼容的问题。
阅读全文