Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
hackerxphantom
GitHub Repository: hackerxphantom/X-IG-OSINT
Path: blob/Hacker-x-Phantom/install.sh
1 views
unlisted
1
#!/bin/bash
2
3
echo -e "\e[95m[+] Installing X-IG OSINT Requirements...\e[0m"
4
5
pkg update -y
6
pkg install python -y
7
pkg install clang -y
8
pkg install libxml2 libxslt -y
9
10
pip install --upgrade pip
11
12
pip install requests beautifulsoup4 lxml rich colorama pyfiglet \
13
aiohttp tqdm phonenumbers python-whois pillow \
14
opencv-python numpy scikit-learn pandas matplotlib \
15
dateparser python-dotenv cloudscraper
16
17
echo -e "\e[92m[✓] All requirements installed successfully!\e[0m"
18
19