2017-01-11 24 views
2
  • Ubuntu 16.04。
  • nginxのバージョン:私はMagentoの2ディレクトリにcomposer install -vを実行nginxの/ 1.10.0(Ubuntuの)
  • PHP 7.0.8-0ubuntu0.16.04.3

私はこれを取得:これらのPHP拡張モジュールをUbuntuにインストールするにはどうすればよいですか?

Loading composer repositories with package information 
Installing dependencies (including require-dev) from lock file 
Dependency resolution completed in 0.000 seconds 
Your requirements could not be resolved to an installable set of packages. 

    Problem 1 
    - The requested PHP extension ext-gd * is missing from your system. Install or enable PHP's gd extension. 
    Problem 2 
    - The requested PHP extension ext-dom * is missing from your system. Install or enable PHP's dom extension. 
    Problem 3 
    - The requested PHP extension ext-simplexml * is missing from your system. Install or enable PHP's simplexml extension. 
    Problem 4 
    - The requested PHP extension ext-mcrypt * is missing from your system. Install or enable PHP's mcrypt extension. 
    Problem 5 
    - The requested PHP extension ext-curl * is missing from your system. Install or enable PHP's curl extension. 
    Problem 6 
    - The requested PHP extension ext-intl * is missing from your system. Install or enable PHP's intl extension. 
    Problem 7 
    - The requested PHP extension ext-xsl * is missing from your system. Install or enable PHP's xsl extension. 
    Problem 8 
    - The requested PHP extension ext-mbstring * is missing from your system. Install or enable PHP's mbstring extension. 
    Problem 9 
    - The requested PHP extension ext-zip * is missing from your system. Install or enable PHP's zip extension. 
    Problem 10 
    - Installation request for braintree/braintree_php 3.7.0 -> satisfiable by braintree/braintree_php[3.7.0]. 
    - braintree/braintree_php 3.7.0 requires ext-curl * -> the requested PHP extension curl is missing from your system. 
    Problem 11 
    - Installation request for pelago/emogrifier v0.1.1 -> satisfiable by pelago/emogrifier[v0.1.1]. 
    - pelago/emogrifier v0.1.1 requires ext-mbstring * -> the requested PHP extension mbstring is missing from your system. 
    Problem 12 
    - Installation request for phpunit/phpunit 4.1.0 -> satisfiable by phpunit/phpunit[4.1.0]. 
    - phpunit/phpunit 4.1.0 requires ext-dom * -> the requested PHP extension dom is missing from your system. 
    Problem 13 
    - Installation request for theseer/fdomdocument 1.6.1 -> satisfiable by theseer/fdomdocument[1.6.1]. 
    - theseer/fdomdocument 1.6.1 requires ext-dom * -> the requested PHP extension dom is missing from your system. 
    Problem 14 
    - theseer/fdomdocument 1.6.1 requires ext-dom * -> the requested PHP extension dom is missing from your system. 
    - sebastian/phpcpd 2.0.0 requires theseer/fdomdocument ~1.4 -> satisfiable by theseer/fdomdocument[1.6.1]. 
    - Installation request for sebastian/phpcpd 2.0.0 -> satisfiable by sebastian/phpcpd[2.0.0]. 

これらの拡張機能をインストールするにはどうすればよいですか? LEMPスタックがインストールされています。

答えて

2

おそらく、あなたのパッケージマネージャを使ってこれを行うことができます。 GD拡張のために 特にあなたはapt-getをapt-getのphp7.0-GD

をインストールし、利用可能な拡張の残りのための同様のパッケージはおそらくあり& & sudoを更新

sudoを実行することができます。 apt-cacheを検索すると、パッケージを検索できます :apt-cache search php7.0は、php7.0に関連するパッケージを検索します

関連する問題