-
Notifications
You must be signed in to change notification settings - Fork 2
/
debian-install-dev
56 lines (52 loc) · 1.18 KB
/
debian-install-dev
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
48
49
50
51
52
53
54
55
56
#!/bin/sh
#
# Passes any script arguments to the apt-get install command,
# so can execute with --dry-run for instance.
#
#sudo apt-get update
# Possibly the following, but xz-utils and bzip2 are included as dependencies,
# and maybe not needing the otherones?
# `# Basic tools (` \
# xz-utils \
# bzip2 \
# unzip \
# p7zip \
sudo apt-get install --no-install-recommends "$@" \
`# SSL` \
libssl-dev
`# Git` \
git \
git-lfs \
`# SSH client` \
openssh-client \
`# Qt 5` \
qtbase5-dev \
libqt5charts5-dev \
`# Python 3` \
python3 \
python3-numpy \
ipython3 \
pylint3 \
python3-pytest \
pyside2-tools \
`# G++` \
g++ \
`# Ninja` \
ninja-build \
`# CMake` \
cmake \
`# Boost: system,filesystem,date_time,serialization,thread,python (+ depedency libboost-dev containing headers)` \
libboost-system-dev \
libboost-filesystem-dev \
libboost-date-time-dev \
libboost-serialization-dev \
libboost-thread-dev \
libboost-python-dev \
`# Armadillo` \
libarmadillo-dev \
`# Dlib` \
libdlib-dev \
libpng-dev \
libsqlite3 \
`# Doctest` \
doctest-dev