On 11/18/2016 09:56 AM, Martijn Dashorst wrote: > For generating the Wicket manual, we want to use plantuml from > asciidoctor. This requires the availability of graphviz (i.e. dot) on > the server. > > Is this available, and if so where can the executable be found? If it > isn't available, can it be made available?
I would suggest a more generic approach that also allows you to specify module versions, if needed (I'm pretty sure virtualenv is available, but check that first): #!/bin/sh -e virtualenv venv . venv/bin/activate pip install graphviz # build wicket docs deactivate -- Kind regards, Michael