如何在jupyter中安装pytorch
时间: 2024-06-09 22:12:10 浏览: 70
pytorch如何安装
你可以使用以下命令在Jupyter中安装PyTorch:
```
!pip install torch
```
请确保你有可用的互联网连接,否则可能会出现安装失败的情况。另外,如果你需要GPU支持,可以使用以下命令安装:
```
!pip install torch torchvision torchaudio -f https://download.pytorch.org/whl/cu102/torch_stable.html
```
这将安装与你的CUDA版本匹配的PyTorch。
阅读全文