Skip to content

Arvind-4/Notepad-in-PyQt5

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Notepad in Python

Take Notes and Save the as .txt file using Python and PyQt5 Framework.

Demo:

Demo of Notepad


Running it Locally:

Step 1: Create a Virtual Environment

pip3 install venv
cd ~/Dev
mkdir notepad
cd notepad
python3 -m venv .
source bin/activate

For Windows us .\Scripts\activate

Step 2: Clone Repository:

cd ~/Dev/notepad
git clone https://github.com/Arvind-4/Notepad-in-PyQt5.git .

Step 3: Install Requirements:

pip install -r requirements.txt

Step 4: Run the Code:

cd ~/Dev/notepad
python src/main.py