Skip to content

Instantly share code, notes, and snippets.

@Cibernomadas
Created May 23, 2018 21:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Cibernomadas/fc8fbcb1474f7666b6e091ba8322c39e to your computer and use it in GitHub Desktop.
Save Cibernomadas/fc8fbcb1474f7666b6e091ba8322c39e to your computer and use it in GitHub Desktop.
# Linux
$ sudo apt-get install graphviz
$ dep status -dot | dot -T png | display
# macOS
$ brew install graphviz
$ dep status -dot | dot -T png | open -f -a /Applications/Preview.app
# Windows
> choco install graphviz.portable
> dep status -dot | dot -T png -o status.png; start status.png
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment