Skip to content

Instantly share code, notes, and snippets.

@ikhsanalatsary
Last active November 1, 2019 10:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ikhsanalatsary/ab6719188851e6fa23bf19c283716fd9 to your computer and use it in GitHub Desktop.
Save ikhsanalatsary/ab6719188851e6fa23bf19c283716fd9 to your computer and use it in GitHub Desktop.
#!/bin/bash
# check m4 already installed
whereis m4
# install automake
sudo apt install automake
# install pkg-config
sudo apt install pkg-config
# install watchman
git clone https://github.com/facebook/watchman.git
cd watchman
git checkout v4.9.0 # the latest stable release
./autogen.sh
./configure --without-python
make
sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment