AutoSQLi icon indicating copy to clipboard operation
AutoSQLi copied to clipboard

ImportError: cannot import name save

Open Kalimon12 opened this issue 6 years ago • 2 comments

Traceback (most recent call last):
  File "autosqli.py", line 7, in <module>
    from autosqli import save
  File "/root/AutoSQLi/autosqli/save.py", line 3, in <module>
    from autosqli import stages
  File "/root/AutoSQLi/autosqli/stages.py", line 4, in <module>
    from autosqli import save
ImportError: cannot import name save

Kalimon12 avatar Jun 08 '18 21:06 Kalimon12

Hello @Kalimon12, and thanks for this report. To fix this, try to launch autosqli in it's clone directory.

clouedoc avatar Jun 09 '18 12:06 clouedoc

I had this issue too, but then I noticed I was using python 2 for everything and the install had went ahead and used my normal pip installation (not pip3), so I went ahead and executed the following:

pip3 install -r requirements.txt
python3 autosqli.py 

and it started working fine.

moorer2k avatar Sep 24 '18 05:09 moorer2k