Ubuntu14版本下无法使用php7.2版本的bcmath扩展

100人浏览   2025-03-03 00:14:15



在使用如下命令安装bcmath扩展的时候

sudo apt-add-repository ppa:ondrej/php
sudo apt-get update
sudo apt-get install php7.2-bcmath

提示如下信息

Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Unable to locate package php7.2-bcmath
E: Couldn't find any package by regex 'php7.2-bcmath'


在添加新的源的情况下,依旧无法使用

sudo apt-add-repository ppa:ondrej/php
sudo apt-get update
sudo apt-get install php7.2-bcmath


然后使用如下命令检查是否可安装该包

apt-cache search php | grep bcmath

发现没有匹配的包,因此在Ubuntu14系统下是无法安装php7.2-bcmath扩展的


相关推荐