在 debian 上使用 elaphe 运行 保存条码时出错,(与 ghostcript 相关)
Error saving barcode with elaphe running on debian, (related to ghostcript)
我运行在debian/jessie框中输入此代码:
from elaphe import barcode
text = 'hello world in barcode'
bc = barcode('pdf417', text, options = dict(
compact = False, eclevel = 5, columns = 13,
rowmult = 2, rows = 3),
margin=20, scale=1)
在 运行 之后,我执行以下操作:
bc.save('filename.png')
然后得到如下错误:
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/lib/python2.7/dist-packages/PIL/Image.py", line 1653, in save
self.load()
File "/usr/lib/python2.7/dist-packages/PIL/EpsImagePlugin.py", line 336, in load
self.im = Ghostscript(self.tile, self.size, self.fp, scale)
File "/usr/lib/python2.7/dist-packages/PIL/EpsImagePlugin.py", line 143, in Ghostscript
stdout=subprocess.PIPE)
File "/usr/lib/python2.7/subprocess.py", line 710, in __init__
errread, errwrite)
File "/usr/lib/python2.7/subprocess.py", line 1335, in _execute_child raise child_exception OSError: [Errno 2]
No such file or directory
如果我 运行 在 ubuntu 14.04 框中使用相同的代码,则不会出现此类错误并且工作正常。因为我看到这个错误出现在几个 post 中,并且有很多包,我可以得出结论,它与 debian 有关,而不是代码本身,甚至与 elaphe python 包无关。
希望找到是否有某种路径可以在某处重新定义或符号链接,或者是否有针对此的补丁。
请帮忙。
错误信息不是很清楚。不过可能是缺少ghostscript包导致的
尝试:
sudo apt-get 安装 ghostscript
我运行在debian/jessie框中输入此代码:
from elaphe import barcode
text = 'hello world in barcode'
bc = barcode('pdf417', text, options = dict(
compact = False, eclevel = 5, columns = 13,
rowmult = 2, rows = 3),
margin=20, scale=1)
在 运行 之后,我执行以下操作:
bc.save('filename.png')
然后得到如下错误:
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/lib/python2.7/dist-packages/PIL/Image.py", line 1653, in save
self.load()
File "/usr/lib/python2.7/dist-packages/PIL/EpsImagePlugin.py", line 336, in load
self.im = Ghostscript(self.tile, self.size, self.fp, scale)
File "/usr/lib/python2.7/dist-packages/PIL/EpsImagePlugin.py", line 143, in Ghostscript
stdout=subprocess.PIPE)
File "/usr/lib/python2.7/subprocess.py", line 710, in __init__
errread, errwrite)
File "/usr/lib/python2.7/subprocess.py", line 1335, in _execute_child raise child_exception OSError: [Errno 2]
No such file or directory
如果我 运行 在 ubuntu 14.04 框中使用相同的代码,则不会出现此类错误并且工作正常。因为我看到这个错误出现在几个 post 中,并且有很多包,我可以得出结论,它与 debian 有关,而不是代码本身,甚至与 elaphe python 包无关。 希望找到是否有某种路径可以在某处重新定义或符号链接,或者是否有针对此的补丁。
请帮忙。
错误信息不是很清楚。不过可能是缺少ghostscript包导致的
尝试: sudo apt-get 安装 ghostscript