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

Python: Broken Pipe Error For PyNomo Example (in function Nomographer)

我在 Python 2.7 上使用 pycharm。我已经安装了 PyNomo. I am trying to run this small example from the official site。代码在 link 上可用,我只是简单地复制粘贴了它。我收到以下错误:

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\end\n")
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\end\n")
IOError: [Errno 32] Broken pipe

Process finished with exit code 1

错误在代码的最后一行:

Nomographer(main_params)

我用 "broken pipe error" 查看了其他问题:here,here, and here。但是 none 对我有帮助。

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

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