Run Osintgram on Windows Using WSL
WSL offers a native-like Linux environment on Windows.
Steps
- Enable WSL:
wsl --install -d Ubuntu
- Launch Ubuntu and install dependencies:
sudo apt update sudo apt install python3 python3-pip git
- Clone and run:
git clone https://github.com/Datalux/Osintgram.git cd Osintgram pip install -r requirements.txt python3 main.py target
Diagram
flowchart TD A[Windows host] --> B[WSL Ubuntu] B --> C[Python environment] C --> D[Osintgram CLI]
Store downloads under the WSL filesystem for best performance (~/Osintgram/output
).