File tree 1 file changed +17
-11
lines changed 1 file changed +17
-11
lines changed Original file line number Diff line number Diff line change @@ -36,6 +36,7 @@ echo "Host adding PPAs"
36
36
echo " ----------------------------------------"
37
37
wget --no-check-certificate -O - https://apt.kitware.com/keys/kitware-archive-latest.asc 2> /dev/null | sudo apt-key add -
38
38
sudo apt-add-repository ' deb https://apt.kitware.com/ubuntu/ xenial main'
39
+ sudo add-apt-repository ppa:ubuntu-toolchain-r/test
39
40
echo " ----------------------------------------"
40
41
41
42
echo
@@ -55,48 +56,53 @@ sudo apt-get install -y \
55
56
bison \
56
57
build-essential \
57
58
ca-certificates \
59
+ clang \
58
60
cmake \
59
61
colordiff \
60
62
coreutils \
61
63
curl \
62
64
flex \
65
+ gawk \
66
+ gcc-9 \
67
+ g++-9 \
63
68
git \
64
69
graphviz \
65
70
inkscape \
66
71
jq \
72
+ libboost-filesystem-dev \
73
+ libboost-python-dev \
74
+ libboost-system-dev \
75
+ libffi-dev \
67
76
libgtk-3-dev \
77
+ libreadline-dev \
68
78
libx11-dev \
69
79
make \
70
80
ninja-build \
71
81
nodejs \
82
+ pkg-config \
72
83
psmisc \
73
84
python \
74
85
python3 \
75
86
python3-dev \
76
87
python3-virtualenv \
77
88
python3-yaml \
78
89
qt5-default \
79
- virtualenv \
80
- clang \
81
- libreadline-dev \
82
- gawk \
83
90
tcl-dev \
84
- libffi-dev \
91
+ virtualenv \
85
92
xdot \
86
- pkg-config \
87
- libboost-system-dev \
88
- libboost-python-dev \
89
- libboost-filesystem-dev \
90
- zlib1g-dev \
93
+ zlib1g-dev
91
94
# Don't include libtbb-dev since it may increase memory usage
92
95
# libtbb-dev \
93
96
94
97
export PATH=" $PATH :/home/kbuilder/.local/bin"
95
98
99
+ export CC=gcc-9
100
+ export CXX=g++-9
101
+
96
102
pyenv install -f 3.6.3
97
103
pyenv global 3.6.3
98
104
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
99
- python3 get-pip.py
105
+ python3 get-pip.py
100
106
rm get-pip.py
101
107
python3 -m pip install -r requirements.txt
102
108
You can’t perform that action at this time.
0 commit comments