apt-get e php5 no Ubuntu - Impossível instalar causa de dependências

0

Estou tentando executar

sudo apt-get install php5

E recebendo esse erro

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:
 php5 : Depends: libapache2-mod-php5 (>= 5.4.17-1~dotdeb.1) but it is not going to be installed or
             libapache2-mod-php5filter (>= 5.4.17-1~dotdeb.1) but it is not going to be installed or
             php5-cgi (>= 5.4.17-1~dotdeb.1) but it is not going to be installed or
             php5-fpm (>= 5.4.17-1~dotdeb.1) but it is not going to be installed
    Depends: php5-common (>= 5.4.17-1~dotdeb.1) but it is not going to be installed
E: Broken packages

Alguma ideia de como fazer isso funcionar?

    
por Milos 24.07.2013 / 17:52

2 respostas

1

Sua saída parece indicar que você usa repositórios adicionais. Portanto, uma alternativa seria restringir-se aos repositórios oficiais, de modo a evitar conflitos. Ou pode ser que seu repositório alternativo esteja configurado para uma versão diferente do Ubuntu (ou mesmo Debian), caso você queira editar seu /etc/apt/sources.list para consertá-lo (ou usar sua GUI favorita para esse efeito .

    
por 24.07.2013 / 23:16
2

Tente executar:

sudo apt-get update

Se você não receber nenhum erro, tente a instalação novamente. Se isso não resolver, tente instalar as dependências manualmente.

sudo apt-get install php5-common
    
por 24.07.2013 / 23:08