Estou lutando para compilar o Python 2.7.9 a partir do código-fonte e fui aconselhado a perguntar esta pergunta aqui.
Durante a instalação do python 2.7.9 seguindo as etapas descritas aqui , os seguintes erros ocorreram :
python make: *** [libinstall] Error 1
Eu tentei reinstalar a versão anterior do python:
sudo apt-get install --reinstall python2.7-dev
A instalação prosseguiu normalmente. No entanto, agora, ao tentar importar hashlib , recebo o seguinte:
Traceback (most recent call last):
File "./server.py", line 5, in <module>
import hashlib
File "/usr/lib/python2.7/hashlib.py", line 138, in <module>
_hashlib.openssl_md_meth_names)
AttributeError: 'module' object has no attribute 'openssl_md_meth_names'
Também não consigo instalar nenhum pacote usando o pip porque a única saída fornecida é:
Traceback (most recent call last):
File "/usr/bin/pip", line 5, in <module>
from pkg_resources import load_entry_point
ImportError: No module named pkg_resources
Eu instalei o python-setuptools :
sudo apt-get install python-setuptools
pip ainda fornece a mesma saída, independentemente da entrada. Seguindo esta pergunta que eu fiz:
curl -O https://bitbucket.org/pypa/setuptools/raw/bootstrap/ez_setup.py
chmod +x ez_setup.py
python ez_setup.py
A saída é:
Traceback (most recent call last):
File "ez_setup.py", line 19, in <module>
import tempfile
File "/usr/lib/python2.7/tempfile.py", line 35, in <module>
from random import Random as _Random
File "/usr/lib/python2.7/random.py", line 49, in <module>
import hashlib as _hashlib
File "/usr/lib/python2.7/hashlib.py", line 138, in <module>
_hashlib.openssl_md_meth_names)
AttributeError: 'module' object has no attribute 'openssl_md_meth_names'
Onde está o problema?
Editar # 1:
A saída de sudo apt-get install --reinstall python2.7-dev parece normal:
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following packages were automatically installed and are no longer required:
libjs-sphinxdoc linux-headers-generic linux-image-generic
Use 'apt-get autoremove' to remove them.
0 upgraded, 0 newly installed, 1 reinstalled, 0 to remove and 310 not upgraded.
Need to get 0 B/269 kB of archives.
After this operation, 0 B of additional disk space will be used.
(Reading database ... 219657 files and directories currently installed.)
Preparing to unpack .../python2.7-dev_2.7.6-8_amd64.deb ...
Unpacking python2.7-dev (2.7.6-8) over (2.7.6-8) ...
Processing triggers for man-db (2.6.7.1-1) ...
Setting up python2.7-dev (2.7.6-8) ...
Editar # 2:
Encontrei esta questão que aborda um problema semelhante. Ele aponta para o este tópico que usa um checkinstall para recuperar todos os documentos gravados arquivos e criando um pacote .deb deles:
sudo apt-get install checkinstall # install the checkinstall package
cd /home/user/Python-2.7.9
sudo checkinstall -D --fstrans=no make install # make the deb package
Ao executar o último comando, a saída fornecida é idêntica à fornecida por make install :
...
Listing /usr/lib/python2.7/xml/parsers ...
Compiling /usr/lib/python2.7/xml/parsers/__init__.py ...
Compiling /usr/lib/python2.7/xml/parsers/expat.py ...
Listing /usr/lib/python2.7/xml/sax ...
Compiling /usr/lib/python2.7/xml/sax/__init__.py ...
Compiling /usr/lib/python2.7/xml/sax/_exceptions.py ...
Compiling /usr/lib/python2.7/xml/sax/expatreader.py ...
Compiling /usr/lib/python2.7/xml/sax/handler.py ...
Compiling /usr/lib/python2.7/xml/sax/saxutils.py ...
Compiling /usr/lib/python2.7/xml/sax/xmlreader.py ...
Compiling /usr/lib/python2.7/xmllib.py ...
Compiling /usr/lib/python2.7/xmlrpclib.py ...
Compiling /usr/lib/python2.7/zipfile.py ...
make: *** [libinstall] Error 1
Editar # 3:
Parece que todos os scripts não podem ser executados. Estou trabalhando na assinatura de algoritmos (usados no bitcoin) e as ferramentas mencionadas aqui (bu, tx) estão produzindo o mesmo erro:
Traceback (most recent call last):
File "/usr/local/bin/bu", line 5, in <module>
from pkg_resources import load_entry_point
ImportError: No module named pkg_resources
Editar # 4:
Eu também tentei a abordagem mencionada aqui aqui . A saída do python get-pip.py é o seguinte:
Traceback (most recent call last):
File "get-pip.py", line 28, in <module>
import tempfile
File "/usr/lib/python2.7/tempfile.py", line 35, in <module>
from random import Random as _Random
File "/usr/lib/python2.7/random.py", line 49, in <module>
import hashlib as _hashlib
File "/usr/lib/python2.7/hashlib.py", line 138, in <module>
_hashlib.openssl_md_meth_names)
AttributeError: 'module' object has no attribute 'openssl_md_meth_names'
Se eu comentar a linha:
import tempfile
então a execução continua até a linha 141:
Traceback (most recent call last):
File "get-pip.py", line 19892, in <module>
main()
File "get-pip.py", line 141, in main
tmpdir = tempfile.mkdtemp()
NameError: global name 'tempfile' is not defined
significa que a importação das seguintes bibliotecas:
import os.path
import pkgutil
import shutil
import sys
import struct
# import tempfile
é bem-sucedido. Isso me faz acreditar que a instalação do python2.7.9 está apenas parcialmente completa (como sugerido sabiamente nos comentários a essa questão).
Editar # 5:
Eu rotei as etapas de configuração e compilação:
./configure --prefix=/usr \
--enable-shared \
--with-system-expat \
--with-system-ffi \
--enable-unicode=ucs4 &&
make
As compilações terminam com:
Python build finished, but the necessary bits to build these modules were not found:
bsddb185 dl imageop
sunaudiodev
To find the necessary bits, look in setup.py in detect_modules() for the module's name.
running build_scripts
Esses módulos são essenciais?
Tags python debian installation linux ubuntu