File: aptinstall.sh

package info (click to toggle)
sympy 1.14.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 36,784 kB
  • sloc: python: 460,598; xml: 359; makefile: 162; sh: 59; lisp: 4
file content (31 lines) | stat: -rwxr-xr-x 615 bytes parent folder | download | duplicates (2)
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