python報錯ImportError: cannot import name ‘Image‘ from ‘PIL‘ 的時候大多數情況下是由於PIL版本和當前python的版本出現了不相容

郭小睿發表於2024-03-12

報錯ImportError: cannot import name ‘Image’ from ‘PIL’ 的時候大多數情況下是由於PIL版本和當前python的版本不相容。

pip uninstall Pillow

pip install "pillow<7.0.0"

相關文章