我正在尝试使用python中的plyer库在windows中生成一个通知。当python脚本运行时,它工作得很好。但是,当我尝试使用pyinstaller创建可执行文件并运行该可执行文件时,我一直收到以下错误
Traceback (most recent call last):
File "site-packages\plyer\utils.py", line 96, in _ensure_obj
ModuleNotFoundError: No module named 'plyer.platforms'
Traceback (most recent call last):
File "in_time.py", line 131, in <module>
File "site-packages\plyer\facades\notification.py", line 84, in notify
File "site-packages\plyer\facades\notification.py", line 90, in _notify
NotImplementedError: No usable implementation found!
这是代码的片段
from plyer import notification
notification.notify(
title='9 hours Completed',
message='You have successfully completed 9hrs for the day',
app_name='In Time App',
app_icon='Time3.ico'
)
发布于 2021-10-12 15:43:28
pyinstaller --onefile --hidden-import plyer.platforms.linux.notification filename.py
如果您使用的是linux
plyer.platforms.win.notification
如果你使用win,也有ios,macos,android平台可用,所以如果你使用这些平台,你可能会想要使用这些平台。如果它不工作,那么您可能需要检查plyer.platforms.目录,看看notifications.py是否存在。
https://stackoverflow.com/questions/56281839
复制相似问题