• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#!/bin/bash
2
3set -e
4
5apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 1E9377A2BA9EF27F
6
7apt-get install -y --allow-unauthenticated --no-install-recommends \
8    g++-7 \
9    clang-3.8 \
10    clang-5.0 \
11    python \
12    python3-sh \
13    python3-typed-ast \
14    clang-format
15
16pip3 install typed_ast
17