Python报错:ImportError cannot import name 'imresize'

简介: Python报错:ImportError cannot import name 'imresize'

Python出现错误:

ImportError: cannot import name 'imresize'

解决方案

首先安装 pillow:

pip install 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()).

安装早期版本:

pip3 install scipy==1.1.0 --user

学习更多编程知识,请关注我的公众号:

代码的路

相关文章
|
6月前
|
数据可视化 数据挖掘 开发者
import有什么用,python中怎么使用import
import有什么用,python中怎么使用import
74 1
|
4月前
|
Python
Python中导入错误(ImportError)
【7月更文挑战第14天】
312 11
|
6月前
|
Python
python导入错误(ImportError)
【5月更文挑战第2天】python导入错误(ImportError)
382 1
|
TensorFlow 算法框架/工具 Python
python报错:ImportError: cannot import name ‘_tf_stack‘ from ‘tenso
ImportError: cannot import name ‘_tf_stack’ from ‘tensorflow.python’本来keras和tensorflow用得好好的,忽然今天报错导入包得时候直接报错。在网上找了很多方法,但是用处都不大,尝试了很多遍都不行。于是尝试将tensorflow和keras卸载重装。(需要彻底卸载,pip命令后还需要删除文件夹中得几个文件夹,也就是...
138 1
|
6月前
|
Python
Python小姿势 - import requests
Python小姿势 - import requests
|
6月前
|
编译器 Python
Python 完美解决 Import "模块" could not be resolved ...
Python 完美解决 Import "模块" could not be resolved ...
216 0
|
编译器 Python
Python 完美解决 Import “模块“ could not be resolved ...
Python 完美解决 Import “模块“ could not be resolved ...
333 0
|
Python
python|typing模块的介绍
python|typing模块的介绍
112 0
|
计算机视觉 Python
python踩坑日记:ImportError: numpy.core.multiarray failed to import
写在前面 这个错误也是搞了好久都没有搞出来,参照网上的好多方法都不对 首先要知道这个错误是由于numpy版本与某个库文件包,比如opencv-python版本不匹配造成的😶‍🌫️
3106 0
下一篇
无影云桌面