dbus-pythonの簡単なチュートリアルのインストール

1072 ワード

pythonスクリプトを書くにはdbusが必要ですが、dbus-pythonというパッケージはsetupを提供していないためです.pyなのでpipで直接インストールすることはできませんが、ソースコードをダウンロードして手動でコンパイルしてインストールするしかありません.

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


しかし、事は順調ではありません.configureの過程で、まだいくつかの間違いがあった.

configure: error: Package requirements (dbus-1 >= 1.0) were not met:

No package 'dbus-1' found

Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.

Alternatively, you may set the environment variables DBUS_CFLAGS
and 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


そしてインストールがスムーズに行えます

./configure
make
sudo make install