Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.4k views
in Technique[技术] by (71.8m points)

operating system - OSError: Unable to locate Ghostscript on paths

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 !)

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

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 Filesgsgs9.22in;

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...