IPicker in Termux – Installation & Usage Commands

IPicker is a simple IP address lookup and geolocation tool that helps users collect publicly available information about IP addresses directly from the Termux terminal. It can display details like country, city, ISP, and approximate location information for any public IP address, making it useful for networking, OSINT learning, and basic information gathering tasks.

Installation Commands

First update and upgrade your Termux packages:

pkg update && pkg upgrade

Install Python and Git:

pkg install python git

Clone the IPicker repository:

git clone https://github.com/Deadpool2000/IPicker.git

Move to the tool directory:

cd IPicker

Install the requirements:

pip install -r requirements.txt

Run the tool:

python ipicker.py

Usage Commands

Start the tool using:

python ipicker.py

After starting the tool, you will see these options:

# Select option >>

1) Check your IP info
2) Check other IP info
3) Exit

Enter Your choice:

Choose the option you want and the tool will automatically display the available IP address information and geolocation details directly inside the Termux terminal.

READ ALSO  Photon in Termux – Installation & Usage Commands

Leave a Comment