当前位置: 代码迷 >> 综合 >> Invoked with: typing.Union[int, NoneType], None, <function try_ann_to_type.<
  详细解决方案

Invoked with: typing.Union[int, NoneType], None, <function try_ann_to_type.<

热度:14   发布时间:2024-01-31 06:20:51.0

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用的是清华镜像,速度很快

  相关解决方案