ghostlulzhacks / waybackSqliScanner

184 stars 63 forks source link

DO NOT RUN MAIN.PY in my ubuntu , i also install "queue " pip but dont work #4

Open OviKing123 opened 4 years ago

OviKing123 commented 4 years ago

Traceback (most recent call last): File "main.py", line 1, in import queue ImportError: No module named queue

0xINT3 commented 4 years ago

Preferably you should be using Python 2 for this. For the import error, just edit the first line of main.py from import queue to import Queue as queue and it should be working :)

DEMON1A commented 3 years ago

The script is totally built-in python3. if you gonna use python2 for it you gonna get some errors. queue is a package that comes with python3 while Queue comes with python2. there's no way python can't find queue so i guess you're using python2 to run the script. you have to use python3 main.py instead of python main.py if you're doing that. there's a high chance you have both versions on your system.