ondrajz / go-callvis

Visualize call graph of a Go program using Graphviz
https://ofabry.github.io/go-callvis
MIT License
5.94k stars 409 forks source link

unable to find program 'dot', please install it or check your PATH #65

Open frankqwang opened 4 years ago

frankqwang commented 4 years ago

2020/06/11 11:08:10 http serving at http://localhost:7878 2020/06/11 11:08:10 converting dot to svg.. 2020/06/11 11:08:10 unable to find program 'dot', please install it or check your PATH

ondrajz commented 4 years ago

You need to install Graphviz.

# on ubuntu
sudo apt install graphviz

README#Requirements.