When running align_face.py I got: AttributeError: module 'PIL.Image' has no attribute 'ANTIALIAS'
From the following stackoverflow post I deduced that by downgrading the Pillow package to the last version before the 10.0.0 (so the 9.5.0) I could get this to work.
So I did pip install --force-reinstall -v "Pillow==9.5.0"
I'm not sure how anaconda works but maybe someone should add the exact version for this dependency
When running
align_face.pyI got:AttributeError: module 'PIL.Image' has no attribute 'ANTIALIAS'From the following stackoverflow post I deduced that by downgrading the Pillow package to the last version before the 10.0.0 (so the 9.5.0) I could get this to work.
So I did
pip install --force-reinstall -v "Pillow==9.5.0"I'm not sure how anaconda works but maybe someone should add the exact version for this dependency