Gitiles
Code Review
Sign In
realtimeroboticsgroup.org
/
RealtimeRoboticsGroup
/
test
/
a573df154b900b6618d0b46f8d2635a8dba1082f
/
.
/
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