You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ python hatdecrypter.py -t 0 -p ebea25dadcb23a11ff3fd991f94f3665
File "hatdecrypter.py", line 36
print "Voce precisa definir um tipo de hash!"
^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(print "Voce precisa definir um tipo de hash!")?
$ python2 hatdecrypter.py -t 0 -p ebea25dadcb23a11ff3fd991f94f3665
Traceback (most recent call last):
File "hatdecrypter.py", line 3, in
import crackers, threading, time, itertools
File "/data/data/com.termux/files/home/Hat/crackers.py", line 4, in
from bs4 import BeautifulSoup
ImportError: No module named bs4
The text was updated successfully, but these errors were encountered:
you need to install the libraries, here is how:
pip install bs4 passlib
pip2 install bs4 passlib
i think the problem is that your default python is 3.5 so pip will only install the libraries for python 3.5, and that's why it shows an error in the first example, this program is made to run on python2.
so running pip2 install bs4 passlib and then running the program with python2 should work!
$ python hatdecrypter.py -t 0 -p ebea25dadcb23a11ff3fd991f94f3665
File "hatdecrypter.py", line 36
print "Voce precisa definir um tipo de hash!"
^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(print "Voce precisa definir um tipo de hash!")?
$ python2 hatdecrypter.py -t 0 -p ebea25dadcb23a11ff3fd991f94f3665
Traceback (most recent call last):
File "hatdecrypter.py", line 3, in
import crackers, threading, time, itertools
File "/data/data/com.termux/files/home/Hat/crackers.py", line 4, in
from bs4 import BeautifulSoup
ImportError: No module named bs4
The text was updated successfully, but these errors were encountered: