It seems graphviz (specifcally, `dot`) is not installed by default. Is there an easy way to request it be available for my pipeline? I am using `sphinx.ext.graphviz` to display some diagrams which are generated directly from my code, to visualize some processing details.
The default docker image we use in pipelines is based on Ubuntu, and you can install additional tools required in your pipeline using 'apt-get', Ubuntu's packager manager tool.
e.g This snippet should install graphviz and dot:
pipelines:
default:
- step:
script:
- apt-get update && apt-get install -y graphviz
- dot -V
I'm not familiar with graphviz, however I did find some instructions for installing additional related tools at https://askubuntu.com/questions/917030/how-to-install-pydot-and-graphviz
Cheers
Graham
Thanks, this solved my issue.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.