Score:1

Not able to install PECL for php 7.3 in ubuntu 20.04 LTS

cn flag

I have a laravel project that uses firebase and I am not able to install PECL for php7.3. I tried this https://cloud.google.com/php/grpc. When I tried the following command

sudo apt-get install autoconf zlib1g-dev php-dev php-pear

it doesn't install Packages for 7.3 but for 8.0 which is not my requirement. I also tried.

sudo apt-get install autoconf zlib1g-dev php7.3-dev php7.3-pear

But it says it cannot locate the package for 7.3 (E: Unable to locate package php7.3-pear)

Score:1
cn flag

Ubuntu 20.04 main repositories support PHP 7.4.

To install 7.3, you will need to use a different source, such as the popular PPA by Ondřej Surý.

$ sudo apt install software-properties-common
$ sudo add-apt-repository ppa:ondrej/php
$ sudo apt update
$ sudo apt install autoconf zlib1g-dev php7.3-dev php-pear
mangohost

Post an answer

Most people don’t grasp that asking a lot of questions unlocks learning and improves interpersonal bonding. In Alison’s studies, for example, though people could accurately recall how many questions had been asked in their conversations, they didn’t intuit the link between questions and liking. Across four studies, in which participants were engaged in conversations themselves or read transcripts of others’ conversations, people tended not to realize that question asking would influence—or had influenced—the level of amity between the conversationalists.