install watchman in ubuntu
Step 1: Install dependent files
$ sudo apt-get install automake autoconf python-dev build-essential
Step 2: Install watchman
$ git clone https://github.com/facebook/watchman.git
$ cd watchman
$ git checkout v4.5.0 # the latest stable release
$ ./autogen.sh
$ ./configure
$ make
$ sudo make install
References:
Leave a comment