作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试安装并启用 PHP 的 GMP 扩展。
Mac OS High Sierra 10.13.5
PHP Version: 7.1.16
Composer version: 1.6.5
Homebrew version: 1.6.9
当我运行composer install
时遇到此错误。
Loading composer repositories with package information
Installing dependencies (including require-dev) from lock file
Your requirements could not be resolved to an installable set of packages.
Problem 1
- The requested PHP extension ext-gmp * is missing from your system. Install or enable PHP's gmp extension.
composer.json
依赖于 "ext-gmp": "*"
。我尝试过以下操作:
brew install homebrew/php/php70-gmp
brew 安装 gmp
brew 安装 homebrew/homebrew-core/php70-gmp
php.ini
以启用 extension=php_gmp.dll
我在安装 Composer 时仍然遇到相同的错误。谁能帮我解决这个问题吗?
最佳答案
重新开始。安装 PHP 7
brew 安装 php@7.1
将 php 路径添加到 ~/.bash_profile
或 ~/.zshrc
:
export PATH="/usr/local/opt/php@7.1/bin:$PATH"
然后源文件,启动php并检查gmp是否已加载
brew services start php@7.1
source ~/.zshrc
php -info | grep "GMP"
再试一次
关于php - 如何在 macOS High Sierra 上安装 PHP GMP?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51097508/
我是一名优秀的程序员,十分优秀!