3

我不明白发生了什么,但我似乎不再能够从 PyCharm 内部绘制石榴图。我使用 conda 作为包管理器,并且已经完成了通常的操作:

conda install graphviz
conda install python-graphviz

但每次我model.plot()从 PyCharm 内部打电话时,我都会得到

Traceback (most recent call last):
  File "<input>", line 1, in <module>
  File "/Applications/PyCharm.app/Contents/helpers/pydev/_pydev_bundle/pydev_umd.py", line 198, in runfile
    pydev_imports.execfile(filename, global_vars, local_vars)  # execute the script
  File "/Applications/PyCharm.app/Contents/helpers/pydev/_pydev_imps/_pydev_execfile.py", line 18, in execfile
    exec(compile(contents+"\n", file, 'exec'), glob, loc)
  File "/Users/.../xai/import.py", line 36, in <module>
    model.plot()
  File "pomegranate/BayesianNetwork.pyx", line 281, in pomegranate.BayesianNetwork.BayesianNetwork.plot
ValueError: must have pygraphviz installed for visualization

我显然已经尝试过安装pygraphviz,但似乎没有什么区别

4

2 回答 2

0

遇到了类似的问题,虽然@Baumann 的解决方案对我不起作用,但安装matplotlib解决了我的问题(Win10 和 WSL 下的 python 3.6)。

点安装 matplotlib

建议的背景: 中的石榴代码BayesianNetwork.pyx使用相同的 try 语句捕获多个导入异常(请参阅下面的代码,也可在github 上找到,最新提交 f116357并且在我的情况下,即使我已经安装pygraphviz但未matplotlib安装导致令人沮丧的异常被引发.

第 40 行以后:

try:
    import tempfile
    import pygraphviz
    import matplotlib.pyplot as plt
    import matplotlib.image
except ImportError:
    pygraphviz = None

然后从第 222 行开始:

if pygraphviz is not None:
    G = pygraphviz.AGraph(directed=True)

    for state in self.states:
        G.add_node(state.name, color='red')

    for parent, child in self.edges:
        G.add_edge(parent.name, child.name)

    if filename is None:
        with tempfile.NamedTemporaryFile() as tf:
            G.draw(tf.name, format='png', prog='dot')
            img = matplotlib.image.imread(tf.name)
            plt.imshow(img)
            plt.axis('off')
    else:
        G.draw(filename, format='pdf', prog='dot')

else:
    raise ValueError("must have pygraphviz installed for visualization")
于 2020-08-24T16:13:31.947 回答
0

我刚刚遇到了同样的问题。我解决了安装graphviz开发包的问题。在 openSUSE 存储库中,它被称为graphviz-devel.

它的描述说:

graphviz-devel 包包含开发使用 graphviz 库(包括 man3 页面)的程序所需的所有内容。

于 2020-04-29T17:42:58.947 回答