cloud_enum icon indicating copy to clipboard operation
cloud_enum copied to clipboard

[!] Please pip install requirements.txt.

Open harpreet1131 opened this issue 1 year ago • 3 comments

Screenshot 2025-01-02 223247

When i do python3 cloud_enum.py it says install requirements , however , i have already installed requirements Screenshot 2025-01-02 223435

please help me ,,,

harpreet1131 avatar Jan 02 '25 17:01 harpreet1131

Hi @maaz45678 - that error comes from this code block:

try:
    import requests
    import dns
    import dns.resolver
    from concurrent.futures import ThreadPoolExecutor
    from requests_futures.sessions import FuturesSession
    from concurrent.futures._base import TimeoutError
except ImportError:
    print("[!] Please pip install requirements.txt.")
    sys.exit()

Can you try to open python and manually import each of these? Then let me know which one is failing?

initstring avatar Jan 04 '25 21:01 initstring

I have same issues. And still not solved, all requirements already installed.

alsigit avatar Feb 09 '25 13:02 alsigit

I have same issues. And still not solved, all requirements already installed.

That error should only trigger if there is an exception in the try block above. Please try running this in Python and see what your exception error is:

import requests
import dns
import dns.resolver
from concurrent.futures import ThreadPoolExecutor
from requests_futures.sessions import FuturesSession
from concurrent.futures._base import TimeoutError

initstring avatar Feb 15 '25 04:02 initstring