Estou executando o Ubuntu 14.04, python 2.7.8, eu tento instalar o python-setuptools, mas ele está dando a seguinte mensagem

-1

Estou tentando instalar o python-setuptools, mas recebendo as seguintes mensagens: Você pode querer executar o 'apt-get -f install' para corrigi-los: Os seguintes pacotes possuem dependências não atendidas:

$ sudo apt-get install python-setuptools
Reading package lists... Done
Building dependency tree       
Reading state information... Done
python-setuptools is already the newest version.
python-setuptools set to manually installed.

You might want to run 'apt-get -f install' to correct these:
The following packages have unmet dependencies:
 icedtea-7-jre-jamvm : Depends: openjdk-7-jre-headless (= 7u65-2.5.2-3~14.04) but 7u65-2.5.1-4ubuntu1~0.14.04.2 is to be installed
 openjdk-7-jre : Depends: openjdk-7-jre-headless (= 7u65-2.5.2-3~14.04) but 7u65-2.5.1-4ubuntu1~0.14.04.2 is to be installed
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).
$ sudo easy-install virtualenv
sudo: easy-install: command not found

Eu também tento atualizar ( sudo apt-get update ) mas está dando a mesma mensagem.

    
por geeks 22.10.2014 / 06:30

1 resposta

0

Leia atentamente estas linhas

icedtea-7-jre-jamvm : Depends: openjdk-7-jre-headless (= 7u65-2.5.2-3~14.04) but 7u65-2.5.1-4ubuntu1~0.14.04.2 is to be installed
openjdk-7-jre : Depends: openjdk-7-jre-headless (= 7u65-2.5.2-3~14.04) but 7u65-2.5.1-4ubuntu1~0.14.04.2 is to be installed

Tudo o que você precisa é reinstalar openjdk package, porque um de seus pacotes depende de versões inferiores.

    
por outoftime 05.11.2015 / 01:09