我的torch版本是
>>> import torch
>>> torch.__version__
'1.8.1+cpu'
>>>
使用时一直出现AttributeError: module ‘torch’ has no attribute 'gesv’这个错误
这是因为torch1.8.1是最新版很多接口发生了变化下载旧版本可以解决这个问题。pip install torch==1.1.0 torchvision==0.3.0 -f https://download.pytorch.org/whl/torch_stable.html
这是我在anaconda下载时使用的命令,可以下载。也可以下载别的版本