问题描述:
在导入torch或torchvision 中,由于torchvision与torch版本不匹配,torchvision无法导入,出现
ImportError: cannot import name 'container_abcs' from 'torch._six' (/usr/local/lib/python3.7/dist-packages/torch/_six.py)
解决方案:
- 查看自己的版本
torch.__version__
,torchvision.__version__
, 如1.9.0+cu102
,0.9.1+cu102
- 去版本对照查看版本, 重新安装对应版本。这里
torchvision
应该用0.10.0
pip uninstall torchvision
pip install torchvision==0.10.0