对于某些直接安装torch==1.4.0报错的情况(没错,就是我遇到了) 在网上查找了,大概的解决方法是先安装一个低版本的torch和torchvision, torchvision是pytorch中专门用来处理图像的库,然后再安装torch==1.4.0.实践过后的操作如下. 实操 首先执行 pip install torch==1.3.1 -f https://download.pytorch.org/whl/torch_stable.html pip install torchvision…