ImportError: Could not import the Python Imaging Library (PIL) required to load image files on tensorflow

后端 未结 5 2261
独厮守ぢ
独厮守ぢ 2020-12-13 06:23

I am doing a deep learning course on udacity. For the first assignment whenI tried to run the script which is below the problem 1 , I got this error. So I tried to uninstall

5条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2020-12-13 06:51

    pip install pillow

    Then replace from IPython.display import display, Image with from IPython.display import display from PIL import Image

提交回复
热议问题