install watchman in ubuntu

less than 1 minute read

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:

Categories:

Updated:

Leave a comment