Kiedy uruchamiam bardzo prosty kod za pomocą 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')
Wyświetla mi komunikat o błędzie:
Couldn't import dot_parser, loading of dot files will not be possible.
Używam Pythona 2.7.3
pip install pydot2
powinien rozwiązać ten problem. O wiele przyjemniejsze niż używanie,pip uninstall
ponieważ jeśli udostępniasz kod, możesz po prostu dodać pydot2 do swojego Requirements.txt i nie pozwalać użytkownikom na uruchamianie nieznanych poleceń.