python - not - ¿Cómo instalar facebook watchman en ubuntu?
watchman ubuntu 16 (4)
- Elemento de lista
$ 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 | sudo tee -a / proc / sys / fs / inotify / max_user_watches && echo 999999 | sudo tee -a / proc / sys / fs / inotify / max_queued_events && echo 999999 | sudo tee -a / proc / sys / fs / inotify / max_user_instances && watchman shutdown-server
Obtuve watchman desde el enlace de github https://github.com/facebook/watchman.git , luego obtuve la carpeta de watchman y probé esto
./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
Por qué ? Tengo python 2.7.9
.
¿Podría ser la causa? (Yo uso ubuntu 15.04
cierto)
Con Watchman v4.9.0 en Ubuntu 18.04:
sudo apt-get update
sudo apt-get install -y autoconf automake build-essential python-dev libtool pkg-config libssl-dev
Luego siga las instrucciones según https://facebook.github.io/watchman/docs/install.html#installing-from-source :
git clone https://github.com/facebook/watchman.git
cd watchman
git checkout v4.9.0 # the latest stable release
./autogen.sh
./configure
make
sudo make install
Necesitas instalar cada uno de los paquetes que faltan.
Por ejemplo en ubuntu:
$ sudo apt-get install automake <=== contains autoheader, ...
$ sudo apt-get install autoconf
Si terminas con un montón de errores como AC_ * indefinido, entonces es posible que necesites una versión más actualizada de automake. Puede descargar la fuente del repositorio gnu ... ver: https://www.gnu.org/software/automake/
Si se obtiene el siguiente error en $ ./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
Tendrá que instalar automake && autoconf.
Como hice lo siguiente:
sudo apt-get install automake autoconf
Luego proceda con los pasos para ./autogen.sh
, etc.