Heim > Artikel > Entwicklungswerkzeuge > Was tun, wenn die Composer-Installation fehlschlägt?
Der Fehlercode lautet wie folgt:
Verwandte Empfehlungen: „Komponisten-Tutorial“
[root@localhost MarketingCenter]# composer install Loading composer repositories with package information Installing dependencies (including require-dev) from lock file Your requirements could not be resolved to an installable set of packages. Problem 1 - Installation request for php-amqplib/php-amqplib v2.7.0 -> satisfiable by php-amqplib/php-amqplib[v2.7.0]. - php-amqplib/php-amqplib v2.7.0 requires ext-bcmath * -> the requested PHP extension bcmath is missing from your system. Problem 2 - php-amqplib/php-amqplib v2.7.0 requires ext-bcmath * -> the requested PHP extension bcmath is missing from your system. - php-amqplib/thumper v0.5.0 requires php-amqplib/php-amqplib ^2.6 -> satisfiable by php-amqplib/php-amqplib [v2.7.0]. - Installation request for php-amqplib/thumper v0.5.0 -> satisfiable by php-amqplib/thumper[v0.5.0]. To enable extensions, verify that they are enabled in your .ini files: - /etc/php.ini - /etc/php.d/curl.ini - /etc/php.d/fileinfo.ini - /etc/php.d/json.ini - /etc/php.d/phar.ini - /etc/php.d/zip.ini You can also run `php --ini` inside terminal to see which files are used by PHP in CLI mode.
Das kann man sehen Sie müssen Extends ext-bcmath hinzufügen.
1. Geben Sie das folgende Verzeichnis ein:
cd /usr/local/php/lib
. Führen Sie dann den folgenden Code aus:
yum install php-bcmath
. Aufgrund des Problems im obigen Bild müssen Sie fortfahren um mbstring zu installieren.
yum install php-mbstring
Drücken Sie die Eingabetaste und die Installation ist erfolgreich.
Endlich ist das Problem gelöst und Sie können mit der Composer-Installation fortfahren.
Das obige ist der detaillierte Inhalt vonWas tun, wenn die Composer-Installation fehlschlägt?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!