Skip to content

Instantly share code, notes, and snippets.

@iampeterbanjo
Forked from davidmason/install-watchman.bash
Last active January 15, 2018 16:29
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 iampeterbanjo/1b53bca4545a279b4f3f2ae8a1865488 to your computer and use it in GitHub Desktop.
Save iampeterbanjo/1b53bca4545a279b4f3f2ae8a1865488 to your computer and use it in GitHub Desktop.
To install watchman on Fedora 26, these are all the hoops I had to jump through.
# The following packages are needed during `make` on Ubuntu
sudo apt-get install libssl-dev libtool autoconf automake build-essential python-dev
# The rest is just instructions from
# https://codeyarns.com/2015/02/10/how-to-install-and-use-watchman/
git clone https://github.com/facebook/watchman.git
cd watchman
git checkout v4.9.0 # latest version
./autogen.sh
./configure
make
sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment