python安装cpu torch
时间: 2023-07-26 16:40:00 浏览: 80
python3.6 安装 torch 和 torchvision 对应可用的Pillow 6.22版本
如果你想在CPU上安装PyTorch,可以使用以下命令:
```
pip install torch-cpu torchvision
```
请注意,这将安装不需要GPU支持的PyTorch版本。如果你的计算机有可用的GPU,并且你想使用GPU加速PyTorch的计算,那么你应该安装支持GPU的PyTorch版本。
阅读全文