cloud_enum
cloud_enum copied to clipboard
[!] Please pip install requirements.txt.
When i do python3 cloud_enum.py it says install requirements , however , i have already installed requirements
please help me ,,,
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?
I have same issues. And still not solved, all requirements already installed.
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