Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Installation problem: pip install notify-py or something else seems to be problematic #52

Open
EceSenaEtoglu opened this issue Sep 15, 2023 · 1 comment

Comments

@EceSenaEtoglu
Copy link

I typed pip install notify-py and ran the following code :

from notifypy import Notify

notification = Notify()
notification.title = "Cool Title"
notification.message = "Even cooler message."
notification.send()

My IDE (Pycharm) gave package error (cannot write exactly but something like this) "cannot find package notifypy"
I clicked install package option the IDE suggested, after that I got the error "Cannot find reference 'Notify' in 'init.py"

@HyperSourceGithub
Copy link

Try doing:
pip uninstall notify-py
then
pip install notify_py
and then see if it works.

If not, then try this for the code:

from notifypy import notification

notification = notification.Notify()
notification.title = "Cool Title"
notification.message = "Even cooler message."
notification.send()

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants