尝试在SimpleSAML项目上运行composer update时遇到以下错误。

- openid/php-openid dev-master requires ext-gmp * -> the requested PHP extension gmp is missing from your system.

运行sudo apt-get install php5-gmp无效,而且sudo apt-get install php7-gmp也无效

最佳答案

要在Ubuntu上为PHP7.0安装GMP,请运行:sudo apt-get install php7.0-gmp
确保您的php.ini包含以下内容:extension=php_gmp.so
要找出php.ini的位置,请运行:php --ini

关于php - 如何在Ubuntu上为PHP7安装GMP,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/40010197/

10-12 07:26