Brief tutorial on installing external-python, external-python
Compile is required to write a python script. However, because the development-python package does not provide setup. py, you cannot directly install it through pip. You only need to download the source code for manual compilation and installation.
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
However, some errors still occur in the./configure process.
Configure: error: Package requirements (dbus-1> = 1.0) were not met: No package 'response-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.
This is obviously because the dependency library is missing.
Sudo apt-get install libdbus-glib-1-dev
Then the installation will proceed smoothly.
./Configuremakesudo make install