Pip PIL error: Could not find any downloads that satisfy the requirement PIL
When installing "PIL" with pip, I got this error:
Fix: use "Pillow" instead of "PIL". Make sure you uninstall PIL first.
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.
pip uninstall PIL
pip install Pillow
Comments
Post a Comment