I have already installed pynotify, still getting error no module named pynotify
问题 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? 回答1: If you need to send