Get PyGraphviz from the Python Package Index at http://pypi.python.org/pypi/pygraphviz
or install it with:
pip install pygraphviz
and an attempt will be made to find and install an appropriate version that matches your operating system and Python version.
You can install the development version (at github.com) with:
pip install git://github.com/pygraphviz/pygraphviz.git#egg=pygraphviz
Get PyGraphviz from the Python Package Index at http://pypi.python.org/pypi/pygraphviz
or install it with:
easy_install pygraphviz
and an attempt will be made to find and install an appropriate version that matches your operating system and Python version.
Load graph as defined by a DOT filedigraph demo1{ a -> b -> c; c ->a; }
import pygraphviz as pgv
G = pgv.AGraph("demo.dot")
G.draw('test', format='svg', prog='dot')
You will get a svg(Scalable Vector Graphics) like this: