web-dev-qa-db-fra.com

Comment installer facebook watchman sur Ubuntu?

J'ai eu watchman de github link https://github.com/facebook/watchman.git , puis j'ai eu le dossier watchman et j'ai essayé 

./autogen.sh 

./autogen.sh: 9: ./autogen.sh: aclocal: not found

./autogen.sh: 10: ./autogen.sh: autoheader: not found

./autogen.sh: 11: ./autogen.sh: automake: not found

./autogen.sh: 12: ./autogen.sh: autoconf: not found

Pourquoi ? J'ai python 2.7.9

Serait-ce la cause? (J'utilise ubuntu 15.04 btw)

16
Albert Tobac

Vous devez installer chacun des packages manquants.

Par exemple sur Ubuntu:

$ Sudo apt-get install automake  <=== contains autoheader, ...
$ Sudo apt-get install autoconf

Si vous vous retrouvez avec une série d'erreurs telles que AC_ * undefined, vous aurez peut-être besoin d'une version plus récente de automake. Vous pouvez télécharger la source depuis le repo gnu ... voir: https://www.gnu.org/software/automake/

51
uDude

Si vous obtenez une erreur suivante sur $ ./autogen.sh

$ ./autogen.sh
./autogen.sh: 9: ./autogen.sh: aclocal: not found
./autogen.sh: 10: ./autogen.sh: autoheader: not found
./autogen.sh: 11: ./autogen.sh: automake: not found
./autogen.sh: 12: ./autogen.sh: autoconf: not found

Vous devrez installer automake && autoconf.

Comme j'ai fait ce qui suit:

Sudo apt-get install automake autoconf

Suivez ensuite les étapes pour ./autogen.sh, etc.

4
javeedishaq
  1. Élément de liste

$ cd ~ $ git clone https://github.com/facebook/watchman.git $ cd watchman /$ git checkout v4.7.0 $ Sudo apt-get install -y autoconf automake build-essential python-dev $ ./autogen.sh $ ./configure $ make $ Sudo make install

$ watchman --version $ echo 999999 | Appuyez sur -a/proc/sys/fs/inotify/max_user_watches && echo 999999 | Lire plus -a/proc/sys/fs/inotify/max_queued_events && echo 999999 | Sélectionnez un serveur/proc/sys/fs/inotify/max_user_instances && watchman shutdown-server

0
Ashish Chaugule