lucascm4000
(usa Outra)
Enviado em 14/07/2016 - 13:59h
Pessoal estou com um problema para instalar um programa. O instalador do programa especifica o seguinte:
Configure SIP (o programa) by executing the configure.py script. For example:
# python configure.py
This assumes that the Python interpreter is on your path
The next step is to build SIP by running your platform’s make command. For example:
#make
The final step is to install SIP by running the following command:
#make install
(Depending on your system you may require root or administrator privileges.)
This will install the various SIP components.
O que eu fiz foi ir para o diretorio da pasta do programa descompactada pleo terminal:
# cd /home/meuUsuario/Trasferencia/sip-4.18-2
em seguida digitei
# python configure.py
A mensagem exibida foi:
This is SIP 4.18 for Python 2.7.12 on linux2.
The SIP code generator will be installed in /usr/bin.
The sip module will be installed in /usr/lib/python2.7/dist-packages.
The sip.pyi stub file will be installed in /usr/lib/python2.7/dist-packages.
The sip.h header file will be installed in /usr/include/python2.7.
The default directory to install .sip files in is /usr/share/sip.
Creating siplib/sip.h...
Creating siplib/siplib.c...
Creating siplib/siplib.sbf...
Creating sipconfig.py...
Creating top level Makefile...
Creating sip code generator Makefile...
Creating sip module Makefile...
Depois digitei :
#make
e apareceu a seguinte mensagem:
make[1]: Entering directory '/home/aeron/Transferências/sip-4.18-2/sipgen'
make[1]: Nothing to be done for 'all'.
make[1]: Leaving directory '/home/aeron/Transferências/sip-4.18-2/sipgen'
make[1]: Entering directory '/home/aeron/Transferências/sip-4.18-2/siplib'
gcc -c -pipe -fPIC -O2 -Wall -W -DNDEBUG -I. -I/usr/include/python2.7 -o siplib.o siplib.c
siplib.c:20:20: fatal error: Python.h: Ficheiro ou directoria inexistente
compilation terminated.
Makefile:29: recipe for target 'siplib.o' failed
make[1]: *** [siplib.o] Error 1
make[1]: Leaving directory '/home/aeron/Transferências/sip-4.18-2/siplib'
Makefile:3: recipe for target 'all' failed
make: *** [all] Error 2
Provavelmente o erro tem haver com "This assumes that the Python interpreter is on your path" eu cheguei a tentar digitar o seguinte comando assim que eu entro com o diretorio do meu instalador:
# export PATH=$PATH:/usr/lib/python2.7
mas apresentou o mesmo erro. Provavelmente esse é um erro bem estupido mas começei a mexer no linux essa semana e estou a algumas horas quebrando a cabeça com isso, se alguem puder ajudar serei extremamente grato!