简体   繁体   中英

Can't find “Python.h” file while installing Watchman

I use Linux Mint 17 'Quiana' and I want to install Watchman to use later Ember.js. Here were my steps:

$ git clone https://github.com/facebook/watchman.git

then

$ cd watchman
$ ./autogen.sh
$ ./configure.sh

and, when I ran make to compile files, it returned the following error:

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

I tried to run

$ sudo apt-get install python3-dev

but it appears to be already in my system. What have I done wrong?

Usually its the python-dev libs missing. Are you sure the configure uses the python 3 instead of python 2? Because if thats the case you should install python-dev instead of python3-dev .

Same problem if you build watchman under rasbian/raspberry. Install "python-dev".

--

git clone https://github.com/facebook/watchman.git
cd watchman
./autogen.sh
./configure
make

sudo make install

i also did

sudo apt-get install python3-dev

it was still giving me the error then i ran this command

sudo apt-get install python-dev

after that.

make 
sudo make install

在 Fedora 32 上运行: sudo dnf install python-devel

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM