You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
graphviz is available, however following error occurs, does anyone have BKM?
$ sudo python3 pigasus.py
Traceback (most recent call last):
File "pigasus.py", line 19, in <module>
from fluid.visualizer import *
File "/home/kobu/kobuworks/pigasus/fluid/visualizer.py", line 1, in <module>
from graphviz import Graph, Digraph
ModuleNotFoundError: No module named 'graphviz'
thanks,
BR/Kobu
The text was updated successfully, but these errors were encountered:
Oh, I see the potential problem, if you have a modern version of PyGraphviz (around 1.3+)?. Turns out we were using an older version of PyGraphviz. In newer versions, PyGraphviz expects from pygraphviz import AGraph and has a slightly different API. I will update this, meanwhile you can comment out from fluid.visualizer import * on line 19 of pigasus.py and pass_manager.add_pass(generate_visualizer_pass(VisualizerType.DEFAULT)) on line 685 of pigasus.py
to disable the visualizer. It will still generate designs.
Hi,
graphviz is available, however following error occurs, does anyone have BKM?
thanks,
BR/Kobu
The text was updated successfully, but these errors were encountered: