Python:PyNomo 示例的断开管道错误(在函数 Nomographer 中)



我在Python 2.7上使用pycharm。我已经安装了PyNomo.我正在尝试从官方网站运行这个小示例。链接上提供了代码,我只是复制粘贴了它。我收到以下错误:

Aligning with tag A
Traceback (most recent call last):
  File "/home/darshil/Desktop/Caltech Summer Internship/Radiation Ononcology Data/DB/rad3/pynomo_temp.py", line 71, in <module>
    Nomographer(main_params)
  File "/usr/local/lib/python2.7/dist-packages/pynomo/nomographer.py", line 203, in __init__
    wrapper.draw_nomogram(c,params['post_func'])
  File "/usr/local/lib/python2.7/dist-packages/pynomo/nomo_wrapper.py", line 213, in draw_nomogram
    block.draw(canvas)
  File "/usr/local/lib/python2.7/dist-packages/pynomo/nomo_wrapper.py", line 445, in draw
    atom.draw(canvas)
  File "/usr/local/lib/python2.7/dist-packages/pynomo/nomo_wrapper.py", line 2503, in draw
    axis_appear=p,base_start=base_start,base_stop=base_stop)
  File "/usr/local/lib/python2.7/dist-packages/pynomo/nomo_axis.py", line 123, in __init__
    self.draw_axis(canvas)
  File "/usr/local/lib/python2.7/dist-packages/pynomo/nomo_axis.py", line 1067, in draw_axis
    c.text(x,y,ttext,attr+[text_color])
  File "/usr/local/lib/python2.7/dist-packages/pyx/canvas.py", line 324, in text
    return self.insert(self.texrunner.text(x, y, atext, *args, **kwargs))
  File "/usr/local/lib/python2.7/dist-packages/pyx/text.py", line 1194, in text
    self.execute(expr, self.defaulttexmessagesdefaultrun + self.texmessagesdefaultrun + texmessages)
  File "/usr/local/lib/python2.7/dist-packages/pyx/text.py", line 951, in execute
    self.defaulttexmessagesstart + self.texmessagesstart)
  File "/usr/local/lib/python2.7/dist-packages/pyx/text.py", line 1005, in execute
    self.texinput.write(self.expr)
IOError: [Errno 32] Broken pipe
Error in atexit._run_exitfuncs:
Traceback (most recent call last):
  File "/usr/lib/python2.7/atexit.py", line 24, in _run_exitfuncs
    func(*targs, **kargs)
  File "/usr/local/lib/python2.7/dist-packages/pyx/text.py", line 748, in _cleantmp
    texrunner.texinput.write("n\endn")
IOError: [Errno 32] Broken pipe
Error in sys.exitfunc:
Traceback (most recent call last):
  File "/usr/lib/python2.7/atexit.py", line 24, in _run_exitfuncs
    func(*targs, **kargs)
  File "/usr/local/lib/python2.7/dist-packages/pyx/text.py", line 748, in _cleantmp
    texrunner.texinput.write("n\endn")
IOError: [Errno 32] Broken pipe
Process finished with exit code 1

错误位于代码的最后一行:

Nomographer(main_params)

我看过其他带有"断管错误"的问题:这里,这里和这里。但它们对我没有帮助。

任何关于如何解决的指示都将非常有帮助。

>PyNomo使用 TeX 安装来排版文本。也许这是缺失导致管道破裂。您需要能够在命令行上运行文件hello.tex内容Hello, world!bye tex hello.tex。它应该导致文件hello.dvi 。如果没有,你需要安装一个像TeXLive这样的TeX发行版。

最新更新