Gitiles
Code Review
Sign In
realtimeroboticsgroup.org
/
RealtimeRoboticsGroup
/
test
/
fcf784a53fd25bc19c8ce3db30f62e2412760b3c
/
.
/
vm
/
setup_scouting.sh
blob: 3360ff5507e55eac5551259c771cbe433a17c2fe [
file
] [
log
] [
blame
]
#!/usr/bin/env bash
set
-
e
set
-
u
export DEBIAN_FRONTEND
=
noninteractive
readonly PKGS
=(
python3
python3
-
flask
)
# Install all the packages that we need/want.
apt
-
get update
for
pkg
in
"${PKGS[@]}"
;
do
apt
-
get install
-
y
-
f
--
force
-
yes
"$pkg"
done