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,752
  • 35
  • 31
  • 35
Adel Moustafa
  • 150
  • 1
  • 9

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
  • 36
  • 3