I am trying to write a program notify.py (location: desktop) that uses plyer library to get a notification on windows 10. I used pip install plyer and am using vs code to run the program but I get an error saying :
" from plyer import notification
ModuleNotFoundError: No module named 'plyer' " .
Here's my code:
from plyer import notificationtitle = "Greetings!"
message = "Don't forget to take a break!"notification.notify(title = title, messgae = message, app_icon = None, timeout = 10, toast = False)