web-dev-qa-db-ja.com

エラー:要件をインストール可能なパッケージセットに解決できませんでした。(サーバー上)

私はプロジェクトにlaravel 5.3を使用しています。現在、サーバーに設定しています。

そうするときに問題が発生しました。そして、私はこのエラーのポイントで立ち往生しています。

走るとき

composer install --no-dev

次のエラーが発生するコマンド:

 Problem 1
    - Installation request for fgrosse/phpasn1 1.5.2 -> satisfiable by fgrosse/phpasn1[1.5.2].
    - fgrosse/phpasn1 1.5.2 requires ext-gmp * -> the requested PHP extension gmp is missing from your system.
  Problem 2
    - Installation request for mdanter/ecc v0.4.2 -> satisfiable by mdanter/ecc[v0.4.2].
    - mdanter/ecc v0.4.2 requires ext-gmp * -> the requested PHP extension gmp is missing from your system.
  Problem 3
    - Installation request for pusher/pusher-php-server 2.6.3 -> satisfiable by pusher/pusher-php-server[2.6.3].
    - pusher/pusher-php-server 2.6.3 requires ext-curl * -> the requested PHP extension curl is missing from your system.
  Problem 4
    - pusher/pusher-php-server 2.6.3 requires ext-curl * -> the requested PHP extension curl is missing from your system.
    - laravel-notification-channels/pusher-Push-notifications 1.0.2 requires pusher/pusher-php-server 2.6.* -> satisfiable by pusher/pusher-php-server[2.6.3].
    - Installation request for laravel-notification-channels/pusher-Push-notifications 1.0.2 -> satisfiable by laravel-notification-channels/pusher-Push-notifications[1.0.2].

  To enable extensions, verify that they are enabled in your .ini files:
    - /etc/php/7.0/cli/php.ini
    - /etc/php/7.0/cli/conf.d/10-mysqlnd.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-mbstring.ini
    - /etc/php/7.0/cli/conf.d/20-mysqli.ini
    - /etc/php/7.0/cli/conf.d/20-pdo_mysql.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.

`

14
YaSh Chaudhary

PHPパッケージを実行するにはextが必要です。

UbuntuとPHP 5を使用している場合、apt-getでインストールできます。

apt-get install php5-gmp 
apt-get install php5-curl

PHP 7:

apt-get install php7.0-gmp 
apt-get install php-curl

や。。など...

その後、Webサービスを再起動すると動作します。

19

まず、composerがインストールされているかどうかを確認します。

composer -v

インストールされている場合は、次の手順を実行します。これは私のために働いた:

Sudo apt-get install php7.2-Zip
Sudo apt-get install php-mbstring -y
Sudo apt-get install php-xml -y

そして最後にこれを行います。

composer install
4
Mo D Genesis

laravelプロジェクトを作成しようとすると、この問題が発生しました。

グーグルで調べた後、私はこの解決策を得ました。

私は次の手順に従いました。

ステップ1:sudo apt-get install -y php7.2-Gd

ステップ2:sudo apt-get install php7.2-intl

ステップ3:sudo apt-get install php7.2-xsl

ステップ4:sudo apt-get install php7.2-mbstring

これらの手順を実行した後、サーバーを再起動するだけです。

次に、ターミナルで「composer create-project laravel/laravel projectname」と入力して、新しいlaravelプロジェクトを作成します。

3
Fahim Sultan

エラーメッセージを読みましたか?

2つのPHP拡張機能; gmpcurlがありません。

次のようにインストールするだけです。

Sudo apt-get install php7.0-gmp
Sudo apt-get install php-curl

これにより、インストールの一部として有効になります。そうでない場合は、手動で有効にするだけで済みます。

インストール後にApacheを再起動してください-Sudo service Apache2 reload

1
James