Não é possível instalar o php5-mcrypt no Ubuntu 14.04

3

Não consigo instalar o php5-mcrypt no Ubuntu 14.04. Eu estou fazendo isso:

$ sudo apt-get install php5-mcrypt

E recebendo isso:

Reading package lists... Done    
Building dependency tree       
Reading state information... Done   
E: Unable to locate package php5-mcrypt
    
por user3740266 14.06.2014 / 13:57

2 respostas

4

php5-mcrypt está localizado no repositório universe .

Abra o Dash, acesse Software and Updates e verifique o repositório universe (software gratuito e de código aberto mantido pela comunidade).

OR

Execute o comando abaixo no terminal para ativar o repositório universe,

sudo add-apt-repository universe

Então:

sudo apt-get update
sudo apt-get install php5-mcrypt

Deve funcionar.

    
por Cornelius 14.06.2014 / 14:02
-1
O

add-apt-repository no Ubuntu 12.10 aparentemente vem deste:     $ apt-get install software-properties-common Depois disso, e outra atualização do apt-get , eu encontrei php5-mcrypt

    
por Arne Stein 26.09.2014 / 10:20