pushbullet.py icon indicating copy to clipboard operation
pushbullet.py copied to clipboard

Critical error: Can't import Pushbullet.

Open SvbZ3r0 opened this issue 4 years ago • 5 comments

Installed Pushbullet v0.12.0 using pip, but I can't get it to work.

from pushbullet import Pushbullet just causes the shell to restart. No error message, no warning.

image

Doesn't work in idle, doesn't work when used in a script, doesn't work in Jupyter. image

Python shell environment is 3.9.0. Jupyter environment is 3.8.5. OS is windows 10.

SvbZ3r0 avatar Dec 08 '20 23:12 SvbZ3r0

Did you try an older version? in pypi says that the suggested version is 0.9.1, also the newest version that is the one that you tried

WilliBobadilla avatar Dec 12 '20 20:12 WilliBobadilla

Just tried 0.9.1. Same thing happens.

SvbZ3r0 avatar Dec 12 '20 23:12 SvbZ3r0

+1 On windows, importing pushbullet (version 0.12.0) raises windows error -1073740791, which means 0xC0000409 STATUS_STACK_BUFFER_OVERRUN. On my Debian, it works.

hayasix avatar Jan 29 '21 03:01 hayasix

On windows, importing pushbullet (version 0.12.0) raises windows error -1073740791, which means 0xC0000409 STATUS_STACK_BUFFER_OVERRUN.

pip install python-magic-bin solves this. I think it'd be better to add this at packages= in setup.py.

hayasix avatar Feb 06 '21 11:02 hayasix

On windows, importing pushbullet (version 0.12.0) raises windows error -1073740791, which means 0xC0000409 STATUS_STACK_BUFFER_OVERRUN.

pip install python-magic-bin solves this. I think it'd be better to add this at packages= in setup.py.

I can confirm this. Using version 0.12.0: on Ubuntu, no issues. On Windows, sometimes it hung indefinitely on the import line or else returned a fatal error. Also, even wrapping the import line in a try ... except doesn't work - it never returns. Installing python-magic-bin fixed it (thanks, hayasix).

skylogic004 avatar Apr 23 '21 22:04 skylogic004