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