如何在 Ubuntu for PHP 7.1 中安装 bcmath

我正在使用 Ubuntu 16 服务器进行测试。我的一个应用程序使用函数。我知道我需要为此安装模块,但我找不到.当我尝试安装时,它只是安装了模块。php7.1bcaddbcmathphp7.1-bcmathapt install php-bcmathphp7.0-bcmath

我无法在服务器上的任何地方找到要安装的模块。有人有想法吗?php7.1-bcmath

apt install php7.1-bcmath返回以下,

E: Unable to locate package php7.1-bcmath

E: Couldn't find any package by glob 'php7.1-bcmath'

E: Couldn't find any package by regex 'php7.1-bcmath'

答案 1

回答我自己的问题。设法通过以下存储库更新修复了此问题。

add-apt-repository ppa:ondrej/php
apt update
apt install php7.1-bcmath

重新启动apache,一切都很好。


答案 2

安装这个:https://packages.ubuntu.com/fr/artful/amd64/php7.1-bcmath/download

添加这个 :

deb http://security.ubuntu.com/ubuntu artful-security main universe

到 /etc/apt/sources.list

$ sudo apt update

$ sudo apt install php7.1-bcmath

推荐