When installing “PIL” with pip, I got this error:
1 2 3 4 |
Downloading/unpacking PIL Could not find any downloads that satisfy the requirement PIL |
Fix: use “Pillow” instead of “PIL”. Make sure you uninstall PIL first.
1 2 3 4 |
pip uninstall PIL pip install Pillow |