This article introduces a brief tutorial on installing Dbus-python, Dbus-python is used in Python programming to deal with the communication between processes, the need for friends can refer to the following
Writing a Python script requires the use of Dbus, but because Dbus-python this package does not provide setup.py, so can not be directly installed through the PIP, only download the source code manually compiled installation.
?
1 2 3 |
wget https://pypi.python.org/packages/source/d/dbus-python/dbus-python-0.84.0.tar.gz Tar zxvf dbus-python-0.84.0.tar.gz CD dbus-python-0.84.0 |
But there was something wrong in the process of/configure.
?
1 2 3 4 5 6 7 8 9 10 |
Configure:error:Package Requirements (dbus-1 >= 1.0) were not met:no Package ' dbus-1 ' found consider ' adjusting t He pkg_config_path environment variable if you are installed software in a non-standard prefix. Alternatively, you could set the environment variables dbus_cflags and dbus_libs to avoid the need. The Pkg-config man page is for more details. |
This is obviously missing the dependency library
?
1 |
sudo apt-get install Libdbus-glib-1-dev |
And then the installation will go smoothly.
?