AttributeError: module 'PIL.Image' has no attribute 'ANTIALIAS'
·
Error
발생한 오류이미지 처리 라이브러리 Pillow에서 발생하는 문제로, 이는 Pillow 10.0.0 버전부터 ANTIALIAS 속성이 제거되었기 때문에 발생하는 오류이다.AttributeError: module 'PIL.Image' has no attribute 'ANTIALIAS' 해결 방법Pillow를 9.5.0 버전으로 다운그레이드하면 해결된다!pip install Pillow==9.5.0 Referencehttps://stackoverflow.com/questions/76616042/attributeerror-module-pil-image-has-no-attribute-antialias