conada下载pytorch时,torchvision出现无法一同下载的情况
最后只能import torch
,不能import torchvision
因此我选用pip 下载torchvision,但是直接pip install torchvision
下载后,import时会出现报错Invoked with: typing.Union[int, NoneType], None, <function try_ann_to_type.<
上网查了很多方法,大部分说是pytorch和torchvision不兼容,只能降低torchvision版本
大家可以试试这个方法,我成功了
第一步,卸载原有的torchvision:pip uninstall torchvision
第二部重新安装低版本的torchvision
pip install torchvision==0.4.1
最后附上pytorch下载链接
我pip下载torchvision用的是清华镜像,速度很快