Composer_cannot_install_php7_4-curl

php7.4-curl をインストールしようとしたが、インストールに失敗した。

1
2
3
4
5
6
$ sudo apt remove php7.4-curl
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package 'php7.4-curl' is not installed, so not removed
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.

以下の手順で source.list を更新することでインストールできた。

1
2
3
4
5
$ wget -qO - https://packages.sury.org/php/apt.gpg | sudo apt-key add -
$ echo "deb https://packages.sury.org/php/ $(lsb_release -sc) main" | sudo tee
$ /etc/apt/sources.list.d/php.list
$ sudo apt update
$ sudo apt install php7.4 php7.4-curl