OSError: Unable to locate Ghostscript on paths

匿名 (未验证) 提交于 2019-12-03 00:59:01

问题:

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 websites'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.

I am working on Python 3

Thanks for help guys,

(oh, and I'm French, so maybe my English is not really perfect !)

回答1:

In case someone else encounters this issue: It seems that Ghostscript has not been added to the paths properly. For those running Win7, here is a fix:

Go to: Control Panel -> System -> Advanced system settings -> Environment Variables...

Find the variable "PATH" -> Edit... -> add the path to your ghostscript binary folder, e.g.

C:\Program Files\gs\gs9.22\bin\;

to the end of the variable. It should be separated from the previous entry by a semicolon.

I had to restart for the changes to take effect.



标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!