1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
#!/usr/bin/env bash
#
# Install non-Python dependencies needed to build the docs on Ubuntu. A
# requirements.txt file is provided to install the Python dependencies.
#
# From a fresh install of Ubuntu:
#
# $ doc/aptinstall.sh
# $ pip install -r doc/requirements.txt
#
# Then you should be set to build the docs.
set -o errexit
sudo apt-get update
sudo apt-get install\
texlive-latex-recommended\
texlive-fonts-recommended\
texlive-fonts-extra\
texlive-xetex\
latexmk\
dvipng\
librsvg2-bin\
imagemagick\
chromium-browser\
libcanberra-gtk-module\
docbook2x\
graphviz\
#
sudo dot -c
|