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