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


좋은 웹페이지 즐겨찾기