完美解决AttributeError: module 'scipy.misc' has no attribute 'imread'报错问题

最近在运行代码的时候出现了这个错误——AttributeError: module 'scipy.misc' has no attribute 'imread'

查阅网上资料之后发现,大部分解决办法都是说没有安装PIL第三方库,库名现在为Pillow,推荐直接使用命令pip install Pillow进行安装,但是我的问题并没有因此得到解决,还是继续报错AttributeError: module 'scipy.misc' has no attribute 'imread'

经过查询和尝试,发现是scipy的版本问题, 降级到scipy==1.2.1就可以完美解决了。

命令如下:

pip install scipy==1.2.1

我的配置如下:

python = 3.5.6
tensorflow = 1.13.1
scipy = 1.2.1
Pillow = 6.0.0

完美解决AttributeError: module 'scipy.misc' has no attribute 'imread'报错问题_第1张图片

你可能感兴趣的:(#,PIL)