我无法使用linuxbrew安装watchman,它显示错误:
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
请帮忙
答案 0 :(得分:3)
安装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
答案 1 :(得分:0)
我对linuxbrew一无所知,但这是根本问题:
https://gist.github.com/anonymous/d4f8d02f93db2e2b1c15#file-03-make-L31-L56
表示您没有设置有效的python开发环境; watchman中构建过程的一部分是为python构建一个C扩展,以使某些序列化/反序列化更有效。
您可能希望/需要使用linuxbrew安装python来解决这个问题。