gpt4 book ai didi

python - Toast Notifier 不工作,我做错了什么吗?

转载 作者:行者123 更新时间:2023-12-05 06:05:34 28 4
gpt4 key购买 nike

首先感谢您花时间阅读本文:

我目前正在尝试让 ToastNotifier 在 MU 的 python 中工作。我已经从 win10toast 中导入了 ToastNotifier:

from win10toast import ToastNotifier

我已经创建了这个函数:

def notifacation():
toast = ToastNotifier()
Title = "Notifacation"
message = "Hello from Ben Colledge"
icon = "a.ico"
length = 30
toast.show_toast(title, message, icon_path=icon, duration=length)

然后像这样调用函数:

notifacation()

然后我运行代码,它给我这个错误信息

回溯(最近调用最后):
文件“c:\users\puzzl\mu_code\notifacation.py”,第 1 行,在模块
从 win10toast 导入 ToastNotifier
ModuleNotFoundError: 没有名为“win10toast”的模块

然后我去了https://pypi.org/project/win10toast/并下载了 win10toast 但没有任何反应

任何帮助将不胜感激谢谢

最佳答案

我遇到了完全相同的问题,但后来我发现这是最好的

python.exe -m pip install win10toast

我运行了这段代码,它仍然有一个问题,但不是同一个问题。现在错误将出现在具有该方法的行中。

toast.show_toast(title, message, icon_path=icon, duration=length)

问题是“标题”未定义。您分配的变量名为“标题”。由于 Python 区分大小写,因此“title”是一个 undefined variable 。这是该行现在的样子:

toast.show_toast(Title, message, icon_path=icon, duration=length)

耶!现在可以使用了!

关于python - Toast Notifier 不工作,我做错了什么吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65980551/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com