如何在 Windows 10 上修复 Python 3 中的 notify2 'dbus' 错误
How to fix notify2 'dbus' error in Python 3 on Windows 10
import notify2
notify2.Notification('title')
我在 Windows 10 上使用 Python 3 和 anaconda。当我 运行 它显示
Traceback (most recent call last):
File "E:\Python Scripting\Upwork RSS Feed Notification\upwork_rss\src\py_s.py", line 56, in <module>
import notify2
File "C:\ProgramData\Anaconda3\lib\site-packages\notify2.py", line 39, in <module>
import dbus
ModuleNotFoundError: No module named 'dbus'
我该如何解决这个问题?
将 dbus 安装为
pip install dbus-python
import notify2
notify2.Notification('title')
我在 Windows 10 上使用 Python 3 和 anaconda。当我 运行 它显示
Traceback (most recent call last):
File "E:\Python Scripting\Upwork RSS Feed Notification\upwork_rss\src\py_s.py", line 56, in <module>
import notify2
File "C:\ProgramData\Anaconda3\lib\site-packages\notify2.py", line 39, in <module>
import dbus
ModuleNotFoundError: No module named 'dbus'
我该如何解决这个问题?
将 dbus 安装为
pip install dbus-python