파수꾼 설치

파수꾼 설치
pkg-config appears to be missing (not available to autoconf tools) please install the pkg-config package for your system.
bash: ./configure: No such file or directory

답변1

  1. pkg-config를 설치합니다.

    sudo apt install pkg-config
    

    문제가 해결되면 완료된 것입니다. 그렇지 않으면 2단계로 계속 진행하세요.

  2. 파수꾼을 설치하세요.

    sudo apt install -y libssl-dev autoconf automake libtool build-essential python-dev 
    cd $HOME
    git clone https://github.com/facebook/watchman.git -b v4.9.0 --depth 1
    cd watchman
    ./autogen.sh
    ./configure
    make
    sudo make install
    

관련 정보