Skip to content

Instantly share code, notes, and snippets.

@sushant-at-nitor
Created January 17, 2022 04:10
Show Gist options
  • Save sushant-at-nitor/30ca1185f2501f55fff61752d18387cc to your computer and use it in GitHub Desktop.
Save sushant-at-nitor/30ca1185f2501f55fff61752d18387cc to your computer and use it in GitHub Desktop.
install watchman on WSL Ubuntu distro
# install watchman on WSL Ubuntu distro
sudo apt-get install -y autoconf automake build-essential python2-dev pkg-config libtool
cd ~
git clone https://github.com/facebook/watchman.git -b v4.9.0 --depth 1
cd watchman
./autogen.sh
./configure --enable-lenient
make
sudo make install
watchman --version
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment