Eu percebi isso.
sudo make install
instala arquivos de cabeçalho python em /usr/local/include/python2.6, mas o CLOP estava procurando pelos arquivos em /usr/include/python2.6
copiei-os e não houve mais problemas
Estou tentando compilar um pacote de software, mas ele falha com
g++ -Wall -O0 -fno-strict-aliasing -I/usr/include/python2.6 -I/usr/include/python2.5 -g -pthread -fpic -I../../plot/src -I../../math/src -I../../rclib/src/util -I../../rclib/src/conui -I../../rclib/src/io -I../../_general -I../../clop/src -I../../clop/src/real -I../../clop/src/artificial -I../../clop/src/math -DPTHREADS -DGUI=nogui -Drestrict=__restrict__ -DKBHIT_UNIX -DCLOCK_FTIME -c -o ../swig/clop_swig_wrap.o ../swig/clop_swig_wrap.cxx
../swig/clop_swig_wrap.cxx:149:20: fatal error: Python.h: No such file or directory
compilation terminated.
make: *** [../swig/clop_swig_wrap.o] Error 1
Como o Python 2.6 não está mais disponível no synaptic, eu fiz o download, criei e instalei a partir do link , mas não adicionou as bibliotecas 2.6 para / usr / include
Como obtenho as bibliotecas python2.6 em / usr / include no Ubuntu 12.04?
Eu percebi isso.
sudo make install
instala arquivos de cabeçalho python em /usr/local/include/python2.6, mas o CLOP estava procurando pelos arquivos em /usr/include/python2.6
copiei-os e não houve mais problemas
cd Downloads
(ou apenas Dow e tab;)). tar -xvf Python-2.6.8.tar.bz2
cd Python-2.6.8.tar.bz2
./configure
(e verifique se tudo está configurado corretamente) make
sudo make install
sudo cp -r /usr/local/include/python2.6 /usr/include/python2.6
e para resolver seu problema;) E você está feito;).
EDIT: /usr/local/include/python2.6 contém pyconfig.h considerando ./Include não