Obtendo um erro ao instalar pacotes python-kivy no Ubuntu

2

Não consigo instalar python-kivy, recebi este erro:

dpkg: error while cleaning up:
 subprocess installed post-installation script returned error exit status 127
Processing triggers for libreoffice-common ...

Errors were encountered while processing:
 /var/cache/apt/archives/update-manager-core_1%3a0.156.14.15_amd64.deb
 /var/cache/apt/archives/update-manager_1%3a0.156.14.15_all.deb
 /var/cache/apt/archives/python-uno_1%3a3.5.7-0ubuntu6.1_amd64.deb
 /var/cache/apt/archives/python-ubuntuone-client_3.0.2-0ubuntu2.2_all.deb
 /var/cache/apt/archives/python-libxml2_2.7.8.dfsg-5.1ubuntu4.9_amd64.deb
 /var/cache/apt/archives/python-lxml_2.3.2-1_amd64.deb

E: Sub-process /usr/bin/dpkg returned an error code (1)
    
por Geo Jacob 19.07.2014 / 12:44

1 resposta

1

você precisa forçar a sobrescrever os pacotes que este problema vem com os repositórios

sudo dpkg -i --force-overwrite <filename>

e depois execute o dpkg

sudo apt-get -f install

veja isto para mais ajuda sobre dpkg e isto para mais ajuda sobre este erro

    
por Chinmaya B 19.07.2014 / 12:58