web-dev-qa-db-fra.com

Comment installer Watchman sur Windows (win10)?

J'essaie d'installer Watchman sur mon ordinateur pour npm pour React Native. J'ai ouvert le dossier docs http://facebook.github.io/watchman/docs/install.html et je ne comprends pas comment procéder.

Pourriez-vous s'il vous plaît m'expliquer plus en détail?

15
pto3

Watchman sous Windows est actuellement dans un état alpha. Le lien de la page d'installation renvoie à ce problème. les instructions sont dans le message en haut: https://github.com/facebook/watchman/issues/19

Si vous ne vous sentez pas à l'aise de suivre ces instructions, utiliser Watchman n'est pas encore fait pour vous.

3
Wez Furlong

Vous devez installer Linux Bash Shell sous Windows 10

Après cela, exécutez la commande suivante sur Bash

apt-get install python-dev libtool m4 automake pkg-config
git clone https://github.com/facebook/watchman.git
cd watchman/
git checkout v4.9.0
./autogen.sh
./configure
make
Sudo make install
0
Emad Hajjar