Instalación de vigilante

Instalación de vigilante
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

Respuesta1

  1. Instale pkg-config.

    sudo apt install pkg-config
    

    Si el problema se resuelve, habrá terminado; de lo contrario, continúe con el paso 2.

  2. Instalar vigilante.

    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
    

información relacionada