conda import torch
时间: 2023-09-20 07:09:32 浏览: 88
Pycharm中import torch报错的快速解决方法
这个命令会导入 PyTorch 模块,前提是你已经安装了 PyTorch 并且在当前的环境中。如果你没有安装 PyTorch,可以使用以下命令在 Conda 中安装:
```
conda install pytorch torchvision torchaudio -c pytorch
```
然后再使用 `import torch` 命令导入 PyTorch 模块。
阅读全文