在 Ubuntu 16.04 上安装 php5-gmp
Installation of php5-gmp on Ubuntu 16.04
有没有办法在 Ubuntu 16.04 上找到并安装 php5-gmp 模块?我找过这个 repository,但我在这里找不到。事实上,当我尝试这样做时:
sudo add-apt-repository ppa:ondrej/php
sudo apt-get update
sudo apt-get install php5-gmp
结果是:
Unable to find php5-gmp package
尝试 php5.6-gmp
:
sudo apt install php5.6-gmp
显然这只会为 PHP5.6 安装 gmp
扩展。
如果你想要 7.0,请使用正确的包名:
sudo apt install php7.0-gmp
有没有办法在 Ubuntu 16.04 上找到并安装 php5-gmp 模块?我找过这个 repository,但我在这里找不到。事实上,当我尝试这样做时:
sudo add-apt-repository ppa:ondrej/php
sudo apt-get update
sudo apt-get install php5-gmp
结果是:
Unable to find php5-gmp package
尝试 php5.6-gmp
:
sudo apt install php5.6-gmp
显然这只会为 PHP5.6 安装 gmp
扩展。
如果你想要 7.0,请使用正确的包名:
sudo apt install php7.0-gmp