-
Notifications
You must be signed in to change notification settings - Fork 337
/
install_system_packages.sh
executable file
·45 lines (29 loc) · 1.11 KB
/
install_system_packages.sh
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
#!/usr/bin/env bash
# ====================================================
# import the bash utils
. bash_utils.sh
# ====================================================
#set -e
print_blue '================================================'
print_blue "Configuring and installing system packages ..."
sudo apt-get update
install_package rsync
install_package unzip
# system packages
install_package build-essential cmake
install_package python3-sdl2
install_package python3-tk
install_package libsuitesparse-dev
install_package libprotobuf-dev
install_package libavcodec-dev libavformat-dev libavutil-dev libpostproc-dev libswscale-dev
install_package libglew-dev
install_package libeigen3-dev # pangolin installation
install_package libopencv-dev # orbslam2_features compilation
install_package libgtk2.0-dev # needed by opencv when built from source
install_package pkg-config
install_package python3-gi
install_package cmake
install_package build-essential
install_package liblz4-dev libzstd-dev
install_package libhdf5-dev # needed when building h5py wheel from src is required (arm64)
echo "... Done!"