Como instalar o PECL ao usar o PHP5.6 em http://ppa.launchpad.net/ondrej/php/ubuntu

1

Eu instalei o PHP 5.6 do PPA http://ppa.launchpad.net/ondrej/php/ubuntu .

Todos os pacotes são chamados php5.6-whatever.

Não há php5.6-pear nesse PPA.

Como posso instalar o php5.6-pear?

    
por fadedbee 02.05.2018 / 23:00

1 resposta

1

Eu tive o mesmo problema. Instalando o pacote php5.6-dev e ajustando os binários php padrão como descrito em link para mim:

apt-get install php5.6-dev
update-alternatives --set php /usr/bin/php5.6
update-alternatives --set php-config /usr/bin/php-config5.6
update-alternatives --set phpize /usr/bin/phpize5.6

Em seguida, funcionará como esperado:

pecl channel-update pecl.php.net
Updating channel "pecl.php.net"
Update of Channel "pecl.php.net" succeeded
    
por 25.09.2018 / 17:18