Anaconda中 python代码报错 module ‘PIL.Image‘ has no attribute ‘Resampling‘ 解决方法
Anaconda中 python代码报错 module 'PIL.Image' has no attribute 'Resampling' 解决方法
·
运行别人的代码,发现突然报错
module 'PIL.Image' has no attribute 'Resampling' 一般是pillow的版本不对
进入到 Anaconda prompt,转到Anaconda的安装目录中,我是在C盘ana文件中,cd C:\ana
先卸载原有的pillow库
pip uninstall pillow
卸载完成装上 8.4版本的pillow
pip install pillow==8.4.0 -i https://pypi.tuna.tsinghua.edu.cn/simple
安装之后 红色字符提示:需要安装9.1以上的版本,说明现在这个版本的pillow比较低,需要更新到最新的,输入下面这个命令,更新到最新的。
pip install --upgrade pillow -i https://pypi.tuna.tsinghua.edu.cn/simple
错误就解决了。
更多推荐
已为社区贡献1条内容
所有评论(0)