Run Osintgram on Windows Using WSL

WSL offers a native-like Linux environment on Windows.

Steps

  1. Enable WSL:
    wsl --install -d Ubuntu
  2. Launch Ubuntu and install dependencies:
    sudo apt update
    sudo apt install python3 python3-pip git
  3. 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).