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?
All you need to do is install pillow:
pip install pillow
Then you should be all set. Found this after hours of searching.