Skip to content Skip to sidebar Skip to footer

Code(keylogger) Converted Into .exe With Pyinstaller Not Working As It Was

I was working with a keylogger code in python 3.5. It records keystrokes with pynput in a txt file and also sends the keystrokes recorded via email with smtplib. The code works co

Solution 1:

1-for me pyinstaller was a headache for me, use auto-py-to-exe tool it will help you. 2-when running .py file ,It is telling pc : I am under python's interpreter lead so i have all python's Access . but when running exe it is unknown software ,so check if anti-malware software/firewall is blocking you exe software.


Auto-py-to-exe helped me to convert py to exe. at first, my exe didn't work and after some search i found out that most of problems are because of hidden imports/files and you have to add them manually . so how to do so in auto-py-to-exe ?

to add the modules using the auto-py-to-exe :what modules are you using? for example: if you need to install the requests lib to make the code work,then use the auto-py-to-exe and there is option to add files ,use it to add the requests from the site-packages folder

for additional help and explaination +auto-py-to-exe troubleshooting This will help

Post a Comment for "Code(keylogger) Converted Into .exe With Pyinstaller Not Working As It Was"