Python 报错:ImportError cannot import name 'imresize'
Python 出现错误:
ImportError: cannot import name 'imresize'
解决方案
首先安装 pillow:
复制代码
然后安装 scipy 早期版本。
高级版 scipy 本不再包含函数 imresize,官网给出的解释及解决办法如下:
imresize is deprecated! imresize is deprecated in SciPy 1.0.0, and will be removed in 1.3.0. Use Pillow instead: numpy.array(Image.fromarray(arr).resize()).
安装早期版本:
复制代码
学习更多编程知识,请关注我的公众号:
版权声明: 本文为 InfoQ 作者【代码的路】的原创文章。
原文链接:【http://xie.infoq.cn/article/3e27a4a62816024faab450c3e】。文章转载请联系作者。
评论