-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathinstall_dependencies.sh
More file actions
executable file
·47 lines (41 loc) · 929 Bytes
/
Copy pathinstall_dependencies.sh
File metadata and controls
executable file
·47 lines (41 loc) · 929 Bytes
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#!/usr/bin/env bash
set -e
if [[ "$OSTYPE" == "darwin"* ]]; then
brew install \
boost \
opencv \
cmake \
pkgconfig \
clang-format \
tbb \
glew \
ccache \
glog
else
# should work for Ubuntu 16.04 and 18.04
sudo apt-get install -y \
cmake \
git \
libtbb-dev \
libeigen3-dev \
libglew-dev \
ccache \
libjpeg-dev \
libpng-dev \
openssh-client \
liblz4-dev \
libbz2-dev \
libboost-regex-dev \
libboost-filesystem-dev \
libboost-date-time-dev \
libboost-program-options-dev \
libopencv-dev \
libpython2.7-dev \
gfortran \
libc++-dev \
libgoogle-glog-dev \
libatlas-base-dev \
libsuitesparse-dev \
wget \
clang-format
fi