jofpin / trape

People tracker on the Internet: OSINT analysis and research tool by Jose Pino
https://x.com/jofpin
7.97k stars 1.28k forks source link

Getting the below Errorq #353

Open nakulkundra opened 2 years ago

nakulkundra commented 2 years ago

Getting the following Error when executing "python3 trape.py -h" Traceback (most recent call last): File "D:\Git\trape\trape.py", line 23, in <module> from core.utils import utils # File "D:\Git\trape\core\utils.py", line 21, in <module> import requests, json ModuleNotFoundError: No module named 'requests'

image

when running on Python 3.10.2

TigerMan1159 commented 2 years ago

hmmm i'm not sure, but try to unzip ngrok.zip in the trape folder.

rly0nheart commented 2 years ago

@TigerMan1159 No, that's not even close.

@nakulkundra The error clearly tells you what's wrong, you don't have requests installed. So before you start trape, make sure you run pip install -r requirements.txt

That should fix it.