Skip to content

Instantly share code, notes, and snippets.

@capsulecorplab
Last active March 2, 2020 04:46
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 capsulecorplab/7cecad9b7be3ff8b8b3acb2c87a900ce to your computer and use it in GitHub Desktop.
Save capsulecorplab/7cecad9b7be3ff8b8b3acb2c87a900ce to your computer and use it in GitHub Desktop.
bash script for installing graphviz 2.38.0
#!/usr/bin/env bash
###############################################################################
# Install script for graphviz 2.38.0 on Ubuntu/Debian
# see https://launchpad.net/ubuntu/+source/graphviz/2.38.0-16ubuntu1
#
# Requirements:
# * Ubuntu/Debian
#
# Usage:
# $ sudo ./graphviz_install.sh
###############################################################################
wget https://launchpad.net/ubuntu/+archive/primary/+sourcefiles/graphviz/2.38.0-16ubuntu1/graphviz_2.38.0.orig.tar.gz
tar -xvf graphviz_2.38.0.orig.tar.gz
cd ./graphviz_2.38.0.orig
./configure
make
make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment