You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
@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
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
The text was updated successfully, but these errors were encountered: