pecl 无法在 Apple Silicon (M1) 上安装 mongodb 驱动程序
pecl fails installing mongodb driver on Apple Silicon (M1)
我在我的 macbook pro m1 上安装了 php 7.4
% php -v
PHP 7.4.15 (cli) (built: Feb 26 2021 09:28:23) ( NTS )
Copyright (c) The PHP Group
Zend Engine v3.4.0, Copyright (c) Zend Technologies
with Zend OPcache v7.4.15, Copyright (c), by Zend Technologies
我正在尝试安装 mongodb 驱动程序 运行:
sudo pecl install mongodb
但过了一会儿就失败了:
mp/pear/temp/mongodb/src/contrib/ -DHAVE_CONFIG_H -g -O2 -c /private/tmp/pear/temp/mongodb/php_phongo.c -fno-common -DPIC -o .libs/php_phongo.o
In file included from /private/tmp/pear/temp/mongodb/php_phongo.c:29:
In file included from /opt/homebrew/Cellar/php@7.4/7.4.15_1/include/php/ext/spl/spl_iterators.h:24:
/opt/homebrew/Cellar/php@7.4/7.4.15_1/include/php/ext/pcre/php_pcre.h:25:10: fatal error: 'pcre2.h' file not found
#include "pcre2.h"
^~~~~~~~~
1 error generated.
make: *** [php_phongo.lo] Error 1
ERROR: `make' failed
我试过
arch -x86_64 sudo pecl install mongodb
但导致同样的错误。
有人知道我该如何解决这个问题吗?或者如果我可以在不使用 pecl 的情况下安装 mongodb 驱动程序。提前致谢。
我终于解决了我的问题。
我按照 https://github.com/mongodb/mongo-php-driver/issues/1159
中的这些步骤操作
安装较新的 PHP 版本后,我以前使用 7.3.24 并更新为 7.4.16。
仍然有同样的问题,但文件不同:
fatal error: 'pcre2.h' file not found #include "pcre2.h"
从这个错误我试图检查 MacOs Big Sur 文件系统中的文件,最后我找到了 pcre2.h 所在的位置,奇怪的是它在 pcre 文件夹中被调用,所以我手动从 pcre2 文件夹复制到 pcre
我使用的解决方案:
$cp /opt/homebrew/Cellar/pcre2/10.36/include/pcre2.h /opt/homebrew/Cellar/php\@7.4/7.4.16/include/php/ext/pcre/pcre2.h
然后,我使用
安装了mongodb
$brew install mongodb
之后,我又试了一次
$sudo pecl install mongodb
终于成功了。但是,我不确定这是否是通过手动向目录中添加头文件来解决问题的好方法。
(对不起,我还是 MacOs 环境的新手,上周刚买了一个 mac mini m1 来提高我的编程技能)
如果您要从自制软件安装 php 多个版本,请确保您使用的是您想要的当前版本。您可以使用 which php.
检查版本
从 7.4 切换到 5.6
$brew unlink php@7.4
$brew link php@5.6 --force
学分:https://www.markhesketh.com/switching-multiple-php-versions-on-macos/
新错误
安装成功:
我在 PHP 7.3 中遇到了同样的问题,我只是通过 运行 以下命令解决了它:
cp /opt/homebrew/Cellar/pcre2/10.38/include/pcre2.h /opt/homebrew/Cellar/php@7.3/7.3.31/include/php/ext/pcre/pcre2.h
然后安装成功:
sudo pecl install mongodb
cp /Applications/MAMP/Library/include/pcre2.h /Applications/MAMP/bin/php/php8.0.8/include/php/ext/pcre/pcre2.h
然后运行
sudo pecl install mongodb
我在我的 macbook pro m1 上安装了 php 7.4
% php -v
PHP 7.4.15 (cli) (built: Feb 26 2021 09:28:23) ( NTS )
Copyright (c) The PHP Group
Zend Engine v3.4.0, Copyright (c) Zend Technologies
with Zend OPcache v7.4.15, Copyright (c), by Zend Technologies
我正在尝试安装 mongodb 驱动程序 运行:
sudo pecl install mongodb
但过了一会儿就失败了:
mp/pear/temp/mongodb/src/contrib/ -DHAVE_CONFIG_H -g -O2 -c /private/tmp/pear/temp/mongodb/php_phongo.c -fno-common -DPIC -o .libs/php_phongo.o
In file included from /private/tmp/pear/temp/mongodb/php_phongo.c:29:
In file included from /opt/homebrew/Cellar/php@7.4/7.4.15_1/include/php/ext/spl/spl_iterators.h:24:
/opt/homebrew/Cellar/php@7.4/7.4.15_1/include/php/ext/pcre/php_pcre.h:25:10: fatal error: 'pcre2.h' file not found
#include "pcre2.h"
^~~~~~~~~
1 error generated.
make: *** [php_phongo.lo] Error 1
ERROR: `make' failed
我试过
arch -x86_64 sudo pecl install mongodb
但导致同样的错误。
有人知道我该如何解决这个问题吗?或者如果我可以在不使用 pecl 的情况下安装 mongodb 驱动程序。提前致谢。
我终于解决了我的问题。 我按照 https://github.com/mongodb/mongo-php-driver/issues/1159
中的这些步骤操作安装较新的 PHP 版本后,我以前使用 7.3.24 并更新为 7.4.16。
仍然有同样的问题,但文件不同:
fatal error: 'pcre2.h' file not found #include "pcre2.h"
从这个错误我试图检查 MacOs Big Sur 文件系统中的文件,最后我找到了 pcre2.h 所在的位置,奇怪的是它在 pcre 文件夹中被调用,所以我手动从 pcre2 文件夹复制到 pcre
我使用的解决方案:
$cp /opt/homebrew/Cellar/pcre2/10.36/include/pcre2.h /opt/homebrew/Cellar/php\@7.4/7.4.16/include/php/ext/pcre/pcre2.h
然后,我使用
安装了mongodb$brew install mongodb
之后,我又试了一次
$sudo pecl install mongodb
终于成功了。但是,我不确定这是否是通过手动向目录中添加头文件来解决问题的好方法。 (对不起,我还是 MacOs 环境的新手,上周刚买了一个 mac mini m1 来提高我的编程技能)
如果您要从自制软件安装 php 多个版本,请确保您使用的是您想要的当前版本。您可以使用 which php.
检查版本从 7.4 切换到 5.6
$brew unlink php@7.4
$brew link php@5.6 --force
学分:https://www.markhesketh.com/switching-multiple-php-versions-on-macos/
新错误
安装成功:
我在 PHP 7.3 中遇到了同样的问题,我只是通过 运行 以下命令解决了它:
cp /opt/homebrew/Cellar/pcre2/10.38/include/pcre2.h /opt/homebrew/Cellar/php@7.3/7.3.31/include/php/ext/pcre/pcre2.h
然后安装成功:
sudo pecl install mongodb
cp /Applications/MAMP/Library/include/pcre2.h /Applications/MAMP/bin/php/php8.0.8/include/php/ext/pcre/pcre2.h
然后运行
sudo pecl install mongodb