Identation error
kusayuzayushko opened this issue · 3 comments
$ python3 seekanddestroy.py
File "seekanddestroy.py", line 63
if pub in line:
^
IndentationError: expected an indented block
I have the same problem
First of all, add two TABS before every line from 63 to 83 in file seekanddestroy.py
(That is causing this IndentationError)
BitBruteForce-Wallet/seekanddestroy.py
Lines 63 to 83 in 84e7dbf
Second thing: dependencies fix - If you do not have pandas module already installed (that is not included in requirements.txt
file) then install it using pip: python3 -m pip install pandas
And if you are a Windows user and have numpy module version 1.19.4 (or later) installed and the program is still not working (showing errors like ** On entry to DGEBAL parameter number 3 had an illegal value
) try to downgrade the numpy module: python3 -m pip uninstall numpy
and then: python3 -m pip install numpy==1.19.3
(It's already reported that numpy version 1.19.4 is causing problems on Windows)
(Also if you are a Windows user it is possible that python3
command will be named just python
. If you have Python installed and cannot run it from the console try adding its executables path to the environment variables path)
@LyingCarpet Solved the issues, Thank you Man!