OSError: Unable to locate Ghostscript on paths

后端 未结 2 2193
不知归路
不知归路 2020-12-21 00:58

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         


        
2条回答
  •  失恋的感觉
    2020-12-21 01:43

    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.

提交回复
热议问题