淘先锋技术网

首页 1 2 3 4 5 6 7

语句: from scipy.misc import imread
报错:ImportError: cannot import name ‘imread’ from ‘scipy.misc’
在这里插入图片描述
踩坑:pip install scipy==1.2.0
在这里插入图片描述

解决:使用from imageio import imread替换掉原语句即可。
在这里插入图片描述
运行成功:
在这里插入图片描述