I have already installed pynotify using :
pip install py-notify
When I re-run this it shows :
Requirement already satisfied (use --upgrade to upgrade).
I also tried :
pip install --upgrade py-notify
but it shows :
Requirement already up-to-date.
Below is my simple code to show desktop notification using pynotify.
import pynotify
pynotify.init("Basic")
n = pynotify.Notification("Title", "Some sample content")
n.show()
What should I do now to run below code correctly?