首页 > 编程 > Python > 正文

安装dbus-python的简要教程

2020-02-23 01:07:12
字体:
来源:转载
供稿:网友

写一个 python 脚本需要用到 dbus,但因为 dbus-python 这个包并没有提供 setup.py , 所以无法通过 pip 直接安装,唯有下载源码手动编译安装一途了。

wget https://pypi.python.org/packages/source/d/dbus-python/dbus-python-0.84.0.tar.gztar zxvf dbus-python-0.84.0.tar.gzcd dbus-python-0.84.0

但事有不顺,在 ./configure 的过程中,还是出了一些错。

configure: error: Package requirements (dbus-1 >= 1.0) were not met:No package 'dbus-1' foundConsider adjusting the PKG_CONFIG_PATH environment variable if youinstalled software in a non-standard prefix.Alternatively, you may set the environment variables DBUS_CFLAGSand DBUS_LIBS to avoid the need to call pkg-config.See the pkg-config man page for more details.

这显然是缺失了依赖库

sudo apt-get install libdbus-glib-1-dev

然后安装就就可以顺利进行了

./configuremakesudo make install


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表