我使用 Linux Mint 17 'Quiana',我想安装 Watchman 以使用以后的 Ember.js。这是我的步骤:
$ git clone https://github.com/facebook/watchman.git
然后
$ cd watchman
$ ./autogen.sh
$ ./configure.sh
并且,当我运行make
编译文件时,它返回了以下错误:
pywatchman/bser.c:31:20: fatal error: Python.h: no such file or directory
#include <Python.h>
^
compilation terminated.
error: command 'i686-linux-gnu-gcc' failed with exit status 1
make[1]: *** [py-build] Error 1
make[1]: Leaving the directory `/home/alex/watchman'
make: *** [all] Error 2
我试着跑
$ sudo apt-get install python3-dev
但它似乎已经在我的系统中。我做错了什么?