Removendo o idle-python2.7 no Ubuntu 12.04

2

Estou tendo alguns problemas ao atualizar pacotes no Ubuntu 12.04:

Processing triggers for menu ...
Errors were encountered while processing:
 idle-python2.7
Setting up idle-python2.7 (2.7.3-0ubuntu3.5) ...
Traceback (most recent call last):
  File "/usr/lib/python2.7/compileall.py", line 16, in <module>
    import struct
  File "/usr/lib/python2.7/struct.py", line 1, in <module>
    from _struct import *
ImportError: No module named _struct
dpkg: error processing idle-python2.7 (--configure):
 subprocess installed post-installation script returned error exit status 1

Acredito que possa estar relacionado com idle-python2.7 e quero removê-lo com:

sudo apt-get remove idle-python2.7

para ver se isso resolve, mas tenho medo de abalar meu sistema.

Posso remover esse pacote com segurança? Como posso executar uma "remoção de avaliação" para ver o que seria removido junto com ela?

    
por Gabriel 18.08.2014 / 15:20

1 resposta

2

No terminal, tente executar o seguinte comando para ver o que ele faz:

idle-python2.7  

O comando abre uma nova janela do ambiente de desenvolvimento integrado IDLE (usando Python-2.7) para Python. O idle-python2.7 é apenas um aplicativo, portanto, é seguro remover o IDLE (usando o Python-2.7) do Ubuntu Software Center ou do terminal digitando:

sudo apt-get remove idle-python2.7    
    
por karel 18.08.2014 / 15:29