python报错ImportError: cannot import name ‘Image‘ from ‘PIL‘ 的时候大多数情况下是由于PIL版本和当前python的版本出现了不兼容

郭小睿的博客 / 2024-03-13 / 原文

报错ImportError: cannot import name ‘Image’ from ‘PIL’ 的时候大多数情况下是由于PIL版本和当前python的版本不兼容。

pip uninstall Pillow

pip install "pillow<7.0.0"