Skip to content

Latest commit

 

History

History
 
 

KeyLogger

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

To Run This KeyLogger Code Using Python

You need to install 'pynput'

Steps to Install 'pynput'

First create virtual env in your IDE and set it by using given commands

macOS
python3 -m venv .venv
source .venv/bin/activate
Linux
sudo apt-get install python3-venv    #If needed
python3 -m venv .venv
source .venv/bin/activate
Windows
py -3 -m venv .venv
.venv\scripts\activate

use this command in your virtual env to install pynput

pip install pynput

Now you can run this in your IDE

Your key log will be saved in 'log.txt' file