eaphammer
eaphammer copied to clipboard
No Module named 'pem'
Just installed a fresh kali image 2020.4. Cloned the repository and ran the ./kali-setup script. When it was installing you can clearly see that pem requirement was met in the logs, but after the script finished i get the following error
Traceback (most recent call last):
File "./eaphammer", line 4, in
When runing pip3-install pem it shows that it is installed
pip3 install pem Requirement already satisfied: pem in /usr/local/lib/python3.9/dist-packages (20.1.0)
Hey - The latest kali defaults to python3.9. You can find the problem in the eaphammer file, line numero uno:
#!/usr/bin/env python3.8
modify that line to
#!/usr/bin/env python3.9
cheers, @rev10d
Resolved 1.14.0