Missing Python.h And Impossible To Find
I know there are already similar questions about the missing Python.h but NO solution worked for me by now. I need Python libraries in order to use Tossim, which is a tinyOS simul
Solution 1:
Ubuntu (and Debian) stores Python include files in /usr/include/python2.7
. If the python2.7-dev
package is installed (a dependency of python-dev
) then Python.h
will be located at:
/usr/include/python2.7/Python.h
You can locate what packages contain the file with the command:
dpkg -S Python.h
or list what files are installed with a package with:
dpkg -L python2.7-dev
Post a Comment for "Missing Python.h And Impossible To Find"