Co-Authored-By: Amit Sharma <48654350+buddhhu@users.noreply.github.com> Co-Authored-By: MMETMA <79155572+MMETMA@users.noreply.github.com> Co-Authored-By: Aditya <me@xditya.me> Co-Authored-By: marat2509 <93652988+marat2509@users.noreply.github.com> Co-Authored-By: smartman_ru <14003491+smartmanru@users.noreply.github.com> Co-Authored-By: Flasho <75789819+flashokillerify@users.noreply.github.com> Co-Authored-By: ÁÑÑÍHÌLÅTØR SPÄRK <75305464+annihilatorrrr@users.noreply.github.com>
20 lines
425 B
Bash
20 lines
425 B
Bash
printf "Updating System..\n\n"
|
|
pkg update -y
|
|
apt update
|
|
apt upgrade -y
|
|
|
|
python_not_installed="$(python -c 'exit()')"
|
|
|
|
# Install Python if n0t installed..
|
|
if [ python_not_installed ]
|
|
then
|
|
printf "Installing Python..\nThis may take some long...\n"
|
|
pkg install python3 -y
|
|
fi
|
|
|
|
printf "*Putting some magical effect...*"
|
|
pip install -q colorama
|
|
|
|
printf "Running up Installation tool.\n"
|
|
python resources/startup/_termux.py
|