Update init_vacuum.sh

This commit is contained in:
HappyZ 2019-06-04 15:54:03 -05:00
parent 1180f9254f
commit c8f71d9a88
1 changed files with 6 additions and 0 deletions

View File

@ -20,5 +20,11 @@ scp ./get_loc_est.py ${REMOTE_EXP_FP}
echo "Install necessary packages"
${REMOTE_CMD} apt update
${REMOTE_CMD} apt --yes install python3-minimal
${REMOTE_CMD} apt --yes install wget
${REMOTE_CMD} apt --yes install unzip
echo "Install adb"
${REMOTE_CMD} wget -O ${REMOTE_EXP_FP}/adbs.zip https://dl.google.com/android/repository/platform-tools-latest-linux.zip
${REMOTE_CMD} unzip ${REMOTE_EXP_FP}/adbs.zip -d ${REMOTE_EXP_FP}
echo "Done!"