0

linuxbrew を使用してウォッチマンをインストールできません。エラーが表示されます。

  error: command '/usr/bin/gcc-4.8' failed with exit status 1
    make[1]: *** [py-build] Error 1
    make[1]: *** Waiting for unfinished jobs....
    make[1]: Leaving directory `/tmp/watchman20150922-20192-z5lj26/watchman-3.7.0-brew'
    make: *** [all] Error 2

エラーログを生成しました

brew gist-logs watchman --config --doctor

そのリンクはhttps://gist.github.com/anonymous/d4f8d02f93db2e2b1c15です

助けてください

4

2 に答える 2

3

Watchman をインストールする最善の方法は次のとおりです。

  • https://github.com/facebook/watchmanにアクセスしてください
  • [クローン] または [ダウンロード] ボタンを選択してダウンロードします
  • ダウンロードしたフォルダに移動して解凍します。
  • cd watchmanを使用してそのフォルダー内に移動します

以下のコマンドに従ってください

$ sudo apt-get install -y autoconf automake build-essential python-dev
$ ./autogen.sh 
$ ./configure 
$ make
$ sudo make install

$ watchman --version
$ echo 999999 | sudo tee -a /proc/sys/fs/inotify/max_user_watches  && echo 999999 | sudo tee -a  /proc/sys/fs/inotify/max_queued_events && echo 999999 | sudo tee  -a /proc/sys/fs/inotify/max_user_instances && watchman  shutdown-server
于 2017-01-25T11:33:44.850 に答える