I've a working python-script in which Image from Pillow is imported succesfully.
Like this: 'from PIL import Image'
After using py2exe and including PIL like any other Library, follwing error occurs:
'No module named Image'
All other Libraries seem to be work.
I already found this solution: http://www.py2exe.org/index.cgi/py2exeAndPIL
But it does not seem to fix my problem.Is there another possibility to tell py2exe to include 'Image' and all other needed parts from Pillow?
Thank you in advance, Nico