ImportError('Could not import PIL.Image. ' working with keras-ternsorflow

Rogelio Em picture Rogelio Em · Jan 12, 2018 · Viewed 64.3k times · Source

Im following some lectures from lynda.com about deep learning using Keras-TensorFlow in a PyCharmCE enviroment and they didnt had this problem. I get this error working :

raise ImportError('Could not import PIL.Image. ' ImportError: Could not import PIL.Image. The use of array_to_img requires PIL.

I have checked others get the same error, but for me installing pillow using pip with the command pip install Pillow doesnt solve anything.

MacBook-Pro-de-Rogelio:~ Rogelio$ pip install Pillow Requirement already satisfied: Pillow in ./anaconda3/lib/python3.6/site-packages MacBook-Pro-de-Rogelio:~ Rogelio$

Im following some lectures from lynda.com about deep learning using Keras-TensorFlow and they didnt had this problem. Any solution?

Answer

Wappler picture Wappler · Sep 8, 2018

All you need to do is install pillow:

pip install pillow

Then you should be all set. Found this after hours of searching.