Linux Mint 17 'Quiana' を使用しており、後で Ember.js を使用するために Watchman をインストールしたいと考えています。ここに私のステップがありました:
$ 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
しかし、それはすでに私のシステムにあるようです。私は何を間違えましたか?