Wächterinstallation

Wächterinstallation
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

Antwort1

  1. Installieren Sie pkg-config.

    sudo apt install pkg-config
    

    Wenn das Problem gelöst ist, sind Sie fertig, andernfalls fahren Sie mit Schritt 2 fort.

  2. Installieren Sie Watchman.

    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
    

verwandte Informationen