没有这样的文件或目录:'gs'linux

时间:2017-02-02 17:11:16

标签: python linux python-3.x virtual-machine ghostscript

我在使用GhostScript将ps文件转换为JPG时遇到问题。

我已成功将其用于我的Win7机器,但由于某种原因它在我的Linux VM中无效。我真的不确定如何在那里添加环境变量(因为在Windows安装中需要它)。基本上我用以下代码测试它:

ps = cv.postscript(colormode='color')
img = Image.open(io.BytesIO(ps.encode('utf-8')))
img.save("wut.jpg")

但是在执行它时,我收到以下错误: enter image description here

但是当我在Linux的命令行中键入“gs”时,它表示已安装: enter image description here

任何形式的帮助都将受到高度赞赏。 :)

1 个答案:

答案 0 :(得分:2)

在你的shell中,使用which gs找到ghostscript的位置。

检查python(os.environ['PATH'])中的路径是否包含ghostscript的位置。