Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

install watchman windows

choco install watchman
Comment

watchman installation

cd ~
git clone https://github.com/facebook/watchman.git
cd watchman/
git checkout v4.9.0
sudo apt install -y autoconf automake build-essential python-dev 
sudo apt install libtool
./autogen.sh
sudo apt install pkg-config
./autogen.sh
./configure --without-python --without-pcre --enable-lenient
make 
sudo make install
watchman --version
Comment

Watchman installation

$ sudo apt update
$ sudo apt install libssl-dev autoconf automake libtool python-setuptools python-dev
$ cd /usr/local/src
$ sudo git clone https://github.com/facebook/watchman.git
$ cd watchman
$ sudo git checkout v4.9.0  # the latest stable release
$ sudo ./autogen.sh
$ sudo ./configure
$ sudo make
$ sudo make install
$ watchman --version
$ echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p
Comment

install watchman windows

choco install watchman
Comment

PREVIOUS NEXT
Code Example
Shell :: git find commit id by message 
Shell :: powershell display environment variables 
Shell :: sed remove until first occurrence 
Shell :: How to check if ssh-agent is already running in bash 
Shell :: git ignore files 
Shell :: bash get lines between 
Shell :: C linux compiler online 
Shell :: bash add text to beginning of file 
Shell :: create public and private key for jwt 
Shell :: hsdpa modem software for linux 
Shell :: vscode connect gitlens to gitlab 
Shell :: npm install and add to dependancies 
Shell :: rename multiple files in terminal 
Shell :: order allow deny 
Shell :: Git Error: OpenSSL SSL_connect: SSL_ERROR_SYSCALL in connection to github.com:443 
Shell :: ls recursive 
Shell :: linux check if screen is running 
Shell :: git merge local branch 
Shell :: create a new github repository 
Shell :: remove umbrella roaming client 
Shell :: file system ntfs not configured in kernel 
Shell :: yum list installed packages from specific repo 
Shell :: bash if statement 
Shell :: start shell on rosetta 2 
Shell :: cp exclude file 
Shell :: enable systemd 
Shell :: install jenkins on ubuntu 20.04 
Shell :: sbatch: error: Batch script contains DOS line breaks ( ) sbatch: error: instead of expected UNIX line breaks ( ). 
Shell :: remove old docker installs linux mint 
Shell :: linux print to printer 
ADD CONTENT
Topic
Content
Source link
Name
6+5 =