当我使用pydot运行非常简单的代码时
import pydot
graph = pydot.Dot(graph_type='graph')
for i in range(3):
edge = pydot.Edge("king", "lord%d" % i)
graph.add_edge(edge)
vassal_num = 0
for i in range(3):
for j in range(2):
edge = pydot.Edge("lord%d" % i, "vassal%d" % vassal_num)
graph.add_edge(edge)
vassal_num += 1
graph.write_png('example1_graph.png')
它向我显示错误消息:
Couldn't import dot_parser, loading of dot files will not be possible.
我正在使用python 2.7.3
pip install pydot2
应该解决这个问题。比起使用它要好得多,pip uninstall
因为如果您共享代码,则只需将pydot2添加到您的requirements.txt中,而不必让用户运行不熟悉的命令。