赞
踩
最近从github上下载了一个别人的项目来运行,出现了如下错误
AttributeError: module 'PIL.Image' has no attribute 'Resampling'
是代码中的 PIL.Image.Resampling.BICUBIC 的 Resampling 报错。
原因是当前的PIL库版本太新,已经移除了 Resampling 这个包名,取而代之的是 PIL.Image.BICUBIC。
所以只需要将代码中的 .Resampling 删除即可解决问题。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。