-
Notifications
You must be signed in to change notification settings - Fork 92
/
install.sh
16 lines (16 loc) · 918 Bytes
/
install.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/data/data/com.termux/files/usr/bin/bash
echo -e "\n[tool] installer for instahack by Termux Hackers ID\n"
echo -e "\n[wait] running pkg update and pkg upgrade ...\n"
pkg update -y && pkg upgrade -y
echo -e "\n[info] installing new repository: tur-repo ...\n"
pkg install tur-repo -y && pkg update -y
echo -e "\n[info] installing package and dependencies ...\n"
pkg install git libffi libsodium binutils build-essential python3.10 -y
echo -e "\n[info] cloning github repository -> 'instahack' ...\n"
git clone https://github.com/termuxhackers-id/instahack
echo -e "\n[info] installing module and requirements ...\n"
cd instahack && pip3.10 install --upgrade pip && pip3.10 install wheel && pip3.10 install -r requirements.txt
echo -e "\n[info] remove all README.md from data directories ...\n"
find data/ -name '*.md' -delete
echo -e "\n[done] running 'ihack.py' to open instahack console ...\n"
python3.10 ihack.py