[php] 작성기를 통해 laravel 설치 프로그램을 설치할 수 없습니다.

Ubuntu PC에 작곡가와 함께 laravel 설치 프로그램을 설치하려고하는데 설치 중에이 오류가 발생합니다. `설치 가능한 패키지 세트로 요구 사항을 해결할 수 없습니다.

  Problem 1
    - laravel/installer v1.4.1 requires ext-zip * -> the requested PHP extension zip is missing from your system.
    - laravel/installer v1.4.0 requires ext-zip * -> the requested PHP extension zip is missing from your system.
    - Installation request for laravel/installer ^1.4 -> satisfiable by laravel/installer[v1.4.0, v1.4.1].

  To enable extensions, verify that they are enabled in those .ini files:
    - /etc/php/7.0/cli/php.ini
    - /etc/php/7.0/cli/conf.d/10-opcache.ini
    - /etc/php/7.0/cli/conf.d/10-pdo.ini
    - /etc/php/7.0/cli/conf.d/20-calendar.ini
    - /etc/php/7.0/cli/conf.d/20-ctype.ini
    - /etc/php/7.0/cli/conf.d/20-exif.ini
    - /etc/php/7.0/cli/conf.d/20-fileinfo.ini
    - /etc/php/7.0/cli/conf.d/20-ftp.ini
    - /etc/php/7.0/cli/conf.d/20-gettext.ini
    - /etc/php/7.0/cli/conf.d/20-iconv.ini
    - /etc/php/7.0/cli/conf.d/20-json.ini
    - /etc/php/7.0/cli/conf.d/20-phar.ini
    - /etc/php/7.0/cli/conf.d/20-posix.ini
    - /etc/php/7.0/cli/conf.d/20-readline.ini
    - /etc/php/7.0/cli/conf.d/20-shmop.ini
    - /etc/php/7.0/cli/conf.d/20-sockets.ini
    - /etc/php/7.0/cli/conf.d/20-sysvmsg.ini
    - /etc/php/7.0/cli/conf.d/20-sysvsem.ini
    - /etc/php/7.0/cli/conf.d/20-sysvshm.ini
    - /etc/php/7.0/cli/conf.d/20-tokenizer.ini
  You can also run `php --ini` inside terminal to see which files are used by PHP in CLI mode.
`

오류가 나타나면 다음 주석을 사용합니다.

composer global require "laravel/installer"



답변

그것은 zip 확장자 가 필요하다고 말합니다

laravel / installer v1.4.0에는 ext-zip이 필요합니다 …

다음을 사용하여 설치 (기본 버전 설치) :

sudo apt install php-zip

또는 특정 버전의 PHP를 실행중인 경우 :

# For php v7.0
sudo apt-get install php7.0-zip

# For php v7.1
sudo apt-get install php7.1-zip

# For php v7.2
sudo apt-get install php7.2-zip

# For php v7.3
sudo apt-get install php7.3-zip

# For php v7.4
sudo apt-get install php7.4-zip


답변

CATALINA를 사용하는 MAC 사용자 용

먼저 homebrew를 설치하십시오. 그런 다음

brew install php@7.3
brew link php@7.3

콘솔을 다시 시작하고 laravel 설치 프로그램을 실행하십시오.


답변

centos 7에서 나는 다음을 사용했습니다.

yum install php-pecl-zip

다른 솔루션이 저에게 효과가 없었기 때문입니다.


답변

PHP7.1의 경우 이것을 설치하십시오

sudo apt-get install php7.1-zip


답변

macOS Catalina 에서이 문제가 발생하는 경우 다음 단계를 권장합니다.

  1. Homebrew를 설치하십시오 (아직 설치하지 않은 경우) : brew.sh이동 하거나 다음 명령을 실행하십시오./usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

  2. 운영 brew install php@7.3

  3. 새로 설치된 PHP 버전을 포함하도록 $ PATH 변수를 업데이트합니다.

echo 'export PATH="/usr/local/opt/php@7.3/bin:$PATH"' >> ~/.zshrc

echo 'export PATH="/usr/local/opt/php@7.3/sbin:$PATH"' >> ~/.zshrc

  1. 쉘 환경 설정 스크립트를 다시로드 $ source ~/.zshrc하거나source ~/.bashrc

  2. 마지막으로 laravel을 설치합니다. composer global require laravel/installer


답변

Ubuntu 16.04경우이 명령을 사용 PHP7.2했으며 저에게 효과적이었습니다.

sudo apt-get install php7.2-zip


답변

PHP7.2가 설치된 Centos 7 :

sudo yum --enablerepo=remi-php72 install php-pecl-zip