Como forçar o apt-get a instalar um pacote que não será instalado devido a um bug introduzido pelo Ubuntu 11.10?

3

O Ubuntu 11.10 separou o Python-profiler da biblioteca padrão do Python devido às filosofias de licenciamento. (De acordo com o que eu poderia Google, corrija-me se eu estiver errado.)

Este é um bug ativo desde outubro para 11.10. Eu tenho o Python 2.7.2 instalado, então os erros de dependência estão errados. 'apt-get check' não resolve o problema.

Qual é a melhor maneira de resolver isso? Obrigado.

sudo apt-get install python-profiler   

Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 python-profiler : Depends: python (>= 2.5) but it is not going to be installed
                   Depends: python (< 2.8) but it is not going to be installed
E: Unable to correct problems, you have held broken packages.
    
por Hemm 22.11.2011 / 09:14

1 resposta

6

O pacote python-profile inclui apenas alguns arquivos .py :

$ apt-file list python-profiler
python-profiler: /usr/lib/python2.5/profile.py
python-profiler: /usr/lib/python2.5/pstats.py
python-profiler: /usr/lib/python2.6/profile.py
python-profiler: /usr/lib/python2.6/pstats.py
python-profiler: /usr/lib/python2.7/profile.py
python-profiler: /usr/lib/python2.7/pstats.py
python-profiler: /usr/share/doc/python-profiler/README.Debian
python-profiler: /usr/share/doc/python-profiler/changelog.Debian.gz
python-profiler: /usr/share/doc/python-profiler/copyright
python-profiler: /usr/share/lintian/overrides/python-profiler

Assim, você pode baixar o pacote binário usando apt-get download python-profiler e extrair seu conteúdo com dpkg -x python-profiler_<version>_all.deb <dir> . Depois de ter o conteúdo do pacote, você pode simplesmente copiar os arquivos .py para sua localização para disponibilizar os módulos do profiler na sua instalação em python.

    
por jcollado 22.11.2011 / 10:33