Prosenjit
Prosenjit

Reputation: 459

Check GraphVIZ installed version on Ubuntu

How to check the version of GraphViz installed on my UBUNTU(12.04) laptop? What command is used to find the version? dot -V is the correct one?

Upvotes: 16

Views: 16145

Answers (2)

elixir
elixir

Reputation: 11

This does it for me $ dpkg -l | grep graphviz

Upvotes: 1

rockstar
rockstar

Reputation: 3538

$ dot -V
dot - graphviz version 2.36.0 (20140111.2315)

I would think so since thats what I get on running the command .

Upvotes: 30

Related Questions