I tried to open an EPS image with Pyzo, I have installed PIL and Ghostscript (as I saw that it is necessary on some other website topics), my code is:
from PIL import Image
im = Image.open('''myimage.eps''')
im.show()
but when I run the code, Pyzo return me:
OSError: Unable to locate Ghostscript on paths
I tried to look into it on several websites but it seems pretty complicated for a novice coding student.