AttributeError: module 'PIL.Image' has no attribute 'open'
时间: 2023-09-15 08:20:57 浏览: 509
AttributeError: module 'tensorflow.compat.v1' has no attribute '
这个错误通常是因为你的代码中导入了 PIL 库,但你所使用的版本过低,缺少了 Image 模块中的 open() 方法。你可以尝试更新 PIL 库的版本,或者使用以下代码替换原有的导入语句:
```
from PIL import Image
```
这样应该就可以正常使用 open() 方法了。如果还有问题,可以提供更多的上下文信息,我会尽力帮助你解决。
阅读全文