forked from beau/relab
18 lines
227 B
Bash
Executable File
18 lines
227 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
|
|
|
|
|
|
|
|
printf "Installing prereqs including python3, pip, dev-tools, and apktool..\n"
|
|
|
|
|
|
sudo apt install python3 -y
|
|
|
|
sudo apt install python3-pip -y
|
|
|
|
sudo apt install build-essential -y
|
|
|
|
|
|
sudo apt install apktool -y
|