报错ModuleNotFoundError: No module named 'torchvision'
时间: 2023-10-12 07:15:10 浏览: 109
导入FashionMNIST数据集时报错module ‘torchvision.datasets’ has no attribute ‘FashionMNIS’
这个报错提示是因为你的环境中没有安装 torchvision 模块。你可以通过以下命令来安装:
```python
pip install torchvision
```
如果你使用的是 conda 环境,可以使用以下命令:
```python
conda install torchvision
```
安装完成后,你就可以在代码中导入 torchvision 模块了。
阅读全文