Como posso corrigir erros relacionados ao lançamento do Centro de Software?

1

Meu Ubuntu Software Center não será iniciado. Eu li várias questões relacionadas e tentei várias sugestões do Ask Ubuntu, incluindo esta questão , mas todas as tentativas retornam as mesmas mensagens de erro. Estou executando o Ubuntu 12.04.

sudo apt-get install --reinstall software-center
sudo apt-get update && sudo apt-get upgrade
sudo apt-get install --reinstall python-pkg-resources

Todas as tentativas fornecem os seguintes erros:

Errors were encountered while processing:  
/var/cache/apt/archives/python-problem-report_2.0.1-0ubuntu15.1_all.deb
/var/cache/apt/archives/python-apport_2.0.1-0ubuntu15.1_all.deb  
 /var/cache/apt/archives/apport_2.0.1-0ubuntu15.1_all.deb  
 /var/cache/apt/archives/python-aptdaemon.gtk3widgets_0.43+bzr805-0ubuntu7_all.deb  
 /var/cache/apt/archives/python-aptdaemon.pkcompat_0.43+bzr805-0ubuntu7_all.deb  
 /var/cache/apt/archives/python-aptdaemon_0.43+bzr805-0ubuntu7_all.deb  
 /var/cache/apt/archives/software-center_5.2.6_all.deb

Como corrijo esses erros e ponho meu sistema funcionando corretamente?

Em resposta ao comentário de Lucio:

A execução das duas linhas de código a seguir produziu os mesmos erros.

sudo apt-get clean
sudo apt-get update && sudo apt-get upgrade

Continuando com o arquivo de ajuda, eu corri:

sudo dpkg --configure -a

e recebeu os seguintes erros:

Errors were encountered while processing:
 python-pkg-resources  
 python-aptdaemon  
 python-aptdaemon.pkcompat  
 apport-gtk  
 software-center  
 python-aptdaemon.gtk3widgets  
 gedit-plugins  
 python-problem-report  
 aptdaemon  
 update-notifier-common  
 python-apport  
 flashplugin-installer  
 apport  

Finalmente, eu corri:

sudo apt-get -f install

mas isso, novamente, forneceu os erros originais.

Eu estava instalando o Python 3.3 para usar como vice-padrão Python2.7. Alguma coisa disso (de /usr/bin ) está criando meu problema?

*-rwxr-xr-x  1 root         root             4124 Apr 17  2012 pyclean  
*-rwxr-xr-x  1 root         root            11933 Apr 17  2012 pycompile  
*lrwxrwxrwx  1 root         root                8 Aug 14 18:02 pydoc -> pydoc2.7  
*-rwxr-xr-x  1 root         root               79 Aug  1 01:40 pydoc2.7  
*lrwxrwxrwx  1 root         root               12 Aug 14 18:02 pygettext -> pygettext2.7  
*-rwxr-xr-x  1 root         root            22103 Aug  1 01:40 pygettext2.7  
*-rwxr-xr-x  1 root         root              217 Mar  9  2012 pyhtmlizer  
*lrwxrwxrwx  1 root         root               28 Dec 24 01:51 python -> /usr/bin/Python-3.3.0/python  
*lrwxrwxrwx  1 root         root                9 Aug 14 18:02 python2 -> python2.7  
*-rwxr-xr-x  1 root         root          2989480 Aug  1 01:40 python2.7  
*drwxr-xr-x 16 inigomontoya inigomontoya     4096 Dec 24 01:42 Python-3.3.0  
*-rw-r--r--  1 root         root         16327785 Sep 29 05:15 Python-3.3.0.tgz  
*lrwxrwxrwx  1 root         root               29 Aug 14 18:02 pyversions -> ../share/python/pyversions.py  
    
por Magellan 27.12.2012 / 21:57

1 resposta

0

Se a versão do python for o problema, você pode postar a saída de sudo update-alternatives --config python ? Se ele mostrar python 3.3 como o padrão, mude para python 2.7 e reinstale o software-center, caso contrário a versão do python não parece ser a causa raiz.

    
por jobin 28.12.2012 / 06:45