0

I have a Python file that I want to convert to .exe using pyinstaller.
I get this error, enter image description here

I searched how to solve this and the solution was to install Pillow package. After I installed it, I face the same error again and I don't know what else to do.

David Buck
  • 3,594
  • 33
  • 29
  • 34

1 Answers1

1

Some versions of PIL have an exposed Image class. Try this:

import Image

You can get more info on this from the official tutorial.

chevian
  • 11
  • 2