web-dev-qa-db-ja.com

MAMP ProにZip拡張機能をインストールする

MAMP Proを実行してZip拡張機能をインストールしようとすると、次のエラーが発生します。

MacBook-Pro:bin michaelharrison$ pecl install Zip
WARNING: channel "pecl.php.net" has updated its protocols, use "pecl channel-update pecl.php.net" to update
downloading Zip-1.15.5.tgz ...
Starting to download Zip-1.15.5.tgz (286,794 bytes)
............................................................done: 286,794 bytes
14 source files, building
running: phpize
Configuring for:
PHP Api Version:         20170718
Zend Module Api No:      20170718
Zend Extension Api No:   320170718
building in /private/tmp/pear/temp/pear-build-michaelharrisonllhfLo/Zip-1.15.5
running: /private/tmp/pear/temp/Zip/configure --with-php-config=/Applications/MAMP/bin/php/php7.2.1/bin/php-config
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for a sed that does not truncate output... /usr/bin/sed
checking for cc... cc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether cc accepts -g... yes
checking for cc option to accept ISO C89... none needed
checking how to run the C preprocessor... cc -E
checking for icc... no
checking for suncc... no
checking whether cc understands -c and -o together... yes
checking for system library directory... lib
checking if compiler supports -R... no
checking if compiler supports -Wl,-rpath,... yes
checking build system type... x86_64-Apple-darwin19.0.0
checking Host system type... x86_64-Apple-darwin19.0.0
checking target system type... x86_64-Apple-darwin19.0.0
checking for PHP prefix... /Applications/MAMP/bin/php/php7.2.1
checking for PHP includes... -I/Applications/MAMP/bin/php/php7.2.1/include/php -I/Applications/MAMP/bin/php/php7.2.1/include/php/main -I/Applications/MAMP/bin/php/php7.2.1/include/php/TSRM -I/Applications/MAMP/bin/php/php7.2.1/include/php/Zend -I/Applications/MAMP/bin/php/php7.2.1/include/php/ext -I/Applications/MAMP/bin/php/php7.2.1/include/php/ext/date/lib
checking for PHP extension directory... /Applications/MAMP/bin/php/php7.2.1/lib/php/extensions/no-debug-non-zts-20170718
checking for PHP installed headers prefix... /Applications/MAMP/bin/php/php7.2.1/include/php
checking if debug is enabled... no
checking if zts is enabled... no
checking for re2c... no
configure: WARNING: You will need re2c 0.13.4 or later if you want to regenerate PHP parsers.
checking for gawk... no
checking for nawk... no
checking for awk... awk
checking if awk is broken... no
checking for Zip archive read/writesupport... yes, shared
checking libzip... yes
checking PHP version... 7.0/7.1/7.2
checking for pkg-config... no
checking for libzip... not found
configure: error: Please reinstall the libzip distribution
ERROR: `/private/tmp/pear/temp/Zip/configure --with-php-config=/Applications/MAMP/bin/php/php7.2.1/bin/php-config' failed
MacBook-Pro:bin michaelharrison$ 

libzip distributionがないようですが、この問題の解決方法に関する情報が見つかりません。 Statamicアドオンをインストールするには、Zip拡張機能が必要です。ここからどこへ行けばいいのかわかりません。

2
Mike Harrison

私は最初に英語で申し訳ありませんでした。私はブラジル人で、書面での練習はありません。

MAMP PROをバージョン5.5.1にPHP= 7.2.21でインストールしました。「このバージョンをコマンドラインで使用可能にする」オプションをオンにしました。

コマンドラインでフォルダに行きました
"/アプリケーション/MAMP/bin/php/php7.2.21/lib/php/extensions/no-debug-non-zts-20170718/"
コマンドpecl install Zipを実行すると、インストールは成功しました。

php.iniファイルをMamp PROで編集し、拡張機能を有効にしました。
extension=/Applications/MAMP/bin/php/php7.2.21/lib/php/extensions/no-debug-non-zts-20170718/Zip.so

XDebug拡張機能を無効にしました。

MAMPサービスを再開しました。

Checking PHP version:コマンドプロンプトでphp -vを実行しました

PHP 7.2.21(cli)(ビルド:2019年8月14日16:40:59)(NTS)著作権(c)1997-2018 PHP Group Zend Engine v3.2.0、Copyright(c )1998-2018 Zend Technologies

Zipライブラリバージョンの確認 php --re Zip | grep Zip Extension [extension#47 Zip version 1.15.4] {

コマンドlaravel new <name>を実行すると、Zipライブラリエラーが引き続き発生しました。

Error
The Zip PHP extension is not installed. Please install it and try again.

解決するためにPHPのバージョンをlaravelコマンドで実行しました

vim ~/.composer/vendor/laravel/installer/laravel

最初の行を#!/usr/bin/env phpから#!/usr/bin/env /Applications/MAMP/bin/php/php7.2.21/bin/phpに変更しました

これはここでうまくいきました。

お役に立てば幸いです。

2