Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Check GraphVIZ installed on windows

Tags:

graphviz

How to check version and path of GraphViz installed on Windows? What command on command prompt is used or Registry location to find them?

like image 452
newbie Avatar asked Jun 21 '15 02:06

newbie


People also ask

How do I know what version of Graphviz I have?

After installing Graphviz, make sure that its bin/ subdirectory containing the dot layout command for rendering graph descriptions is on your systems' PATH (sometimes done by the installer; setting PATH on Linux, Mac, and Windows): On the command-line, dot -V should print the version of your Graphiz installation.

How do I open a dot file in graphviz?

For windows: dl the msi and install; Find gvedit.exe in your programs list; Open . dot file in question; Click running person on toolbar; Go to graph -> settings ; change Output file type to file type of your liking and press ok..


1 Answers

Run "dot -V" from the command prompt. If GraphViz is installed and configured you'll get it's version.

like image 171
ASH Avatar answered Sep 18 '22 13:09

ASH