I am trying to visualize how different projects depend on one another. I think a good way to do this is to send a survey around to some project developers asking about what their inputs and outputs are and map the results with graphviz. Once most of the “skeleton” of my graph is in place, I’d like to open the survey up to project teams for them to expand and correct. Because I anticipate many more responses from this second circulation, I think the easiest way to stay on top of it is to have people pull a git repo, edit a file with a list of nodes, and then push the repo back. At that point, gitlab will run a script redrawing the network from the user’s changes. This all goes well in my test case until I need to save a png image of the map, at which point I get the error graphviz.backend.execute.ExecutableNotFound: failed to execute PosixPath('dot'), make sure the Graphviz executables are on your systems' PATH
I solved this locally by brew installing graphviz, rather than using pip, but brew isn’t recognized on the gitlab setup I must use. Any ides how to get around this?