ubuntu 16.04上python导入dbus出错

ubuntu 16.04上python导入dbus出错

我正在尝试在 python 脚本中导入 dbus。但我收到以下错误

Traceback (most recent call last):
  File "playSong.py", line 4, in <module>
    import os, dbus
ModuleNotFoundError: No module named 'dbus'

我已经安装了dbus。但它仍然给出错误。为什么会这样呢?

答案1

我尝试使用以下行进行安装并且它有效。

conda install -c scottwales dbus-python

相关内容