Getting the below Errorq
nakulkundra opened this issue · 2 comments
nakulkundra commented
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'
when running on Python 3.10.2
TigerMan1159 commented
hmmm i'm not sure, but try to unzip ngrok.zip in the trape folder.
rly0nheart commented
@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.