New issue 99 by kanu...@gwu.edu: There is no gv.py for MS Windows
http://code.google.com/p/python-graph/issues/detail?id=99
What steps will reproduce the problem?
1. The example on http://code.google.com/p/python-graph/wiki/Example uses
the command "import gv"
2. To the best of my knowledge gv does not exist for Windows
What is the expected output? What do you see instead?
I use Eclipse and PyDev and "import gv" results in "Unresolved import"
because there is no equivalent for the following in Windows:
import sys
sys.path.append('..')
sys.path.append('/usr/lib/graphviz/python/')
sys.path.append('/usr/lib64/graphviz/python/')
import gv
What version of the product are you using? On what operating system?
Eclipse 2.7 on Windows 7
Please provide any additional information below.
Is there any advice you cam provide on how to go about rendering my graph
or if there is a work around or an alternative.
Thanks so much
Comment #1 on issue 99 by pmatiello: There is no gv.py for MS Windows
http://code.google.com/p/python-graph/issues/detail?id=99
You have to download and install Graphviz for Windows. I'm not sure whether
the Python modules comes bundled with the Windows install, but the command
line tools are surely available (and you can call them from your scripts to
draw a DOT file generated by python-graph).
Unfortunately, there isn't much more we can do about it as Graphviz is an
entirely different project.