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

699    Asked by ClareMatthews in Python , Asked on Jul 15, 2021

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?

Answered by Damini das

Simply install a pillow if you could not import pil.image. the use of `array_to_img` requires pil.:

    pip install pillow


Your Answer

Interviews

Parent Categories