Plyer“NotImplementedError:找不到可用的实现!”在 .exe 中发送通知时

时间:2021-08-01 21:34:31

标签: python python-3.x

我制作了一个 python 脚本,它应该在代码完成或代码有错误时发送通知。 代码如下:

from plyer import notification

try:
#code here

    notification.notify(title='Title', message=str(variable_name))
except Exception as e:
    notification.notify(title='Title', message=str(e))

当我在 PyCharm 中运行脚本时,它可以工作,它会发送通知,但是当我将脚本转换为 .exe 文件(使用 auto-py-to-exe)并运行它时,它给了我 {{ 1}} 错误在相应的行。 (此错误显示在弹出窗口中)。

我做错了什么?或者我应该改变我在文件中发送通知的方式?如果是这样,如何?

0 个答案:

没有答案