0

I wanted to use doxygen 1.8.5 on CentOS 7 which uses dot to produce graphs of source codes. dot is a tool of graphviz package. I downloaded graphviz 2.42 and installed it by going through the following steps: (1) ./configure (2) make, and (3) make install. I, then, decided to use the latest version of graphviz (version 2.44) to prevent some bugs and issues of the older version 2.42.

To do this, I tried to uninstall the graphviz 2.42 using the command yum autoremove graphviz. Then, I used this installation guide to install graphviz 2.44. Graphviz 2.44 is successfully installed but the version of dot is still 2.42. I checked it with dot -V.

Why the version of the dot is still 2.42 while graphviz 2.44 is installed? How can I change the version of dot to the most recently installed one?

Thanks

1 Answers1

2

Uninstall the compiled program, in the source directory run:

sudo make uninstall
GAD3R
  • 63,407
  • 31
  • 131
  • 192