错误导入python-pushover

时间:2016-12-22 12:26:17

标签: python python-2.7 push-notification

我目前正在运行python 2.7。

我已经安装了python-pushover。

但是当我尝试导入以下代码时

from pushover import init, Client'

我收到以下错误

from pushover import init, Client
ImportError: cannot import name init

我试过了

import pushover
from pushover import init, Client

同样的错误。

1 个答案:

答案 0 :(得分:4)

我的猜测是你pip install pushover。但是,这将从different package安装the one you are interested in。相反,您需要卸载该软件包:

pip uninstall pushover

并安装正确的软件包:

pip install python-pushover

执行此操作后,您的代码应按预期工作。