Tentando instalar o Flask - Dependência de pacote não atendida

0

Eu estou olhando para começar a mexer com o Python Flask e estou tentando agora instalar os pacotes que eu preciso na minha instalação 16.10. Depois de rodar o 'sudo apt-get install python3-flask' eu recebo esta saída:

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-flask : Depends: python3-click but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

Eu olhei meus pacotes no Synaptic por curiosidade e vi que eu tenho esse pacote python3-click instalado.

Alguma sugestão sobre como resolver isso?

    
por cP4n 26.03.2017 / 19:33

1 resposta

1

Como a saída de apt list --installed | grep python3-click ,

python3-click-package/yakkety,now 0.4.45.1+16.10.20160916-0ubuntu1 amd64 [installed,automatic] 

informa que o pacote está instalado, você só precisa da dependência anterior: python3-flask .

Você pode baixar e instalar manualmente a partir aqui .

    
por M. Becerra 26.03.2017 / 19:59