当前位置:网站首页>Unable to import torchvision. IO. Read_image
Unable to import torchvision. IO. Read_image
2022-08-05 06:48:00 【ProfSnail】
Running the official websitepytorch案例的时候,发现无法从torchvision.io中导入read_image.
ImportError: cannot import name 'read_image' from 'torchvision.io'
查看torchvision的版本发现是0.6backward version.
In [1]: import torchvision as tv
In [2]: tv.__version__
Out[2]: '0.6.0'
升级torchvision版本即可,使用pip进行升级.
pip install --upgrade torchvision
However, it is found that there is a problem of abnormal access permissions.
ERROR: Could not install packages due to an OSError: [WinError 5] 拒绝访问.: 'c:\\users\\zhang\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\~orch\\lib\\asmjit.dll'
Consider using the `--user` option or check the permissions.
Added when upgrading–user选项即可.
pip install --user --upgrade torchvison
检查版本号,发现升级成功.
In [1]: import torchvision as tv
In [2]: tv.__version__
Out[2]: '0.10.0+cpu'
In [3]: tv.io.read_image
Out[3]: <function torchvision.io.image.read_image(path: str, mode: torchvision.io.image.ImageReadMode = <ImageReadMode.UNCHANGED: 0>) -> torch.Tensor>
不过这样还是不行,因为升级到了cpu版本,cuda不能调用了.Simply uninstalledtorch,重新安装了一遍.
pip3 install torch==1.9.0+cu111 torchvision==0.10.0+cu111 torchaudio===0.9.0 -f https://download.pytorch.org/whl/torch_stable.html
这下就没问题了.
In [1]: import torch
In [2]: torch.__version__
Out[2]: '1.9.0+cu111'
In [3]: torch.cuda.is_available()
Out[3]: True
In [4]: import torchvision as tv
In [5]: tv.__version__
Out[5]: '0.10.0+cu111'
边栏推荐
猜你喜欢
Chengyun Technology was invited to attend the 2022 Alibaba Cloud Partner Conference and won the "Gathering Strength and Going Far" Award
The cocos interview answers you are looking for are all here!
Mina's long and short connections
The 25 best free games on mobile in 2020
LeetCode中常用语言的一些基本方法记录
盒子模型小练习
Alibaba Cloud Video on Demand
selenium学习
自营商城提高用户留存小技巧,商城对接小游戏分享
config.js相关配置汇总
随机推荐
Late night drinking, 50 classic SQL questions, really fragrant~
vs2017关于函数命名方面的注意事项
cs231n learning record
摆脱极域软件的限制
七种让盒子水平垂直居中的方法
Nacos集群的搭建过程详解
Network Troubleshooting Basics - Study Notes
VRRP overview and experiment
人人AI(吴恩达系列)
Shadowless Cloud Desktop
Successful indie developers deal with failure & imposters
numpy.random使用文档
Collision, character controller, Cloth components (cloth), joints in the Unity physics engine
What is the website ICP record?
多线程之传递参数
Drools规则引擎快速入门(一)
Cloud Computing Basics - Study Notes
H5开发调试-Fiddler手机抓包
网络排错基础-学习笔记
Complete mysql offline installation in 5 minutes