“dependências não atendidas: python3-click-package” ao tentar clicar em instalar

0

Estou tentando instalar o Click e outras ferramentas no Ubuntu 16.10 para gerenciar um telefone Ubuntu. Especificamente, desejo instalar os pacotes click e phablet-tools . Quando tento fazer isso, recebo a seguinte saída de terminal:

>sudo apt-get -y install python3-click-package
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:
 python3-click-package : Depends: gir1.2-click-0.4 (= 0.4.43+16.04.20160203-0ubuntu2) but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

Eu executei os seguintes comandos, mas continuo vendo o problema:

sudo apt-get autoremove
sudo apt-get update
sudo apt-get upgrade
sudo apt-get dist-upgrade
sudo apt-get install -f
    
por d3pd 20.12.2016 / 06:29

1 resposta

0

Como dito aqui 16.04 clique em dependências não atendidas execute o comando.

sudo apt install python3-click-package=0.4.43+16.04.20160203-0ubuntu2 gir1.2-click-0.4=0.4.43+16.04.20160203-0ubuntu2 libclick-0.4-0=0.4.43+16.04.20160203-0ubuntu2
    
por 4xy 14.07.2017 / 12:44