Home > Backend Development > PHP Tutorial > Problems when installing lavarel globally in composer

Problems when installing lavarel globally in composer

不言
Release: 2023-03-01 07:12:02
Original
5050 people have browsed it

The system is centos6.5

[root@memda www]# composer global require "laravel/installer=~1.1"
Changed current directory to /root/.composer
./composer.json has been created
Loading composer repositories with package information
Updating dependencies (including require-dev)
  - Installing symfony/process (v3.1.3)
    Downloading: Failed       
    Downloading: Failed       
    Downloading: Failed       
    Failed to download symfony/process from dist: The "https://api.github.com/repos/symfony/process/zipball/04c2dfaae4ec56a5c677b0c69fac34637d815758" file could not be downloaded: failed to open stream: No route to host
    Now trying to download from source
  - Installing symfony/process (v3.1.3)
    Cloning 04c2dfaae4ec56a5c677b0c69fac34637d815758

Installation failed, deleting ./composer.json.
The disk hosting /root/.composer is full, this may be the cause of the following exception

                                                                                                                                         
  [RuntimeException]                                                                                                                     
  Failed to clone https://github.com/symfony/process.git via https, ssh protocols, aborting.                                             
  - https://github.com/symfony/process.git                                                                                               
    error: Failed connect to github.com:443; Operation now in progress while accessing https://github.com/symfony/process.git/info/refs  
                                                                                                                                         
    fatal: HTTP request failed                                                                                                           
  - git@github.com:symfony/process.git                                                                                                   
    ssh: connect to host github.com port 22: No route to host                                                                            
    fatal: The remote end hung up unexpectedly                                                                                           
                                                                                                                                         

require [--dev] [--prefer-source] [--prefer-dist] [--no-plugins] [--no-progress] [--no-update] [--update-no-dev] [--update-with-dependencies] [--ignore-platform-reqs] [--sort-packages] [-o|--optimize-autoloader] [-a|--classmap-authoritative] [--] []...
Copy after login
Copy after login

There will always be a symfony/process download failure process, and the reason cannot be found at all, crying, crying, crying...

Reply content:

The system is centos6.5

[root@memda www]# composer global require "laravel/installer=~1.1"
Changed current directory to /root/.composer
./composer.json has been created
Loading composer repositories with package information
Updating dependencies (including require-dev)
  - Installing symfony/process (v3.1.3)
    Downloading: Failed       
    Downloading: Failed       
    Downloading: Failed       
    Failed to download symfony/process from dist: The "https://api.github.com/repos/symfony/process/zipball/04c2dfaae4ec56a5c677b0c69fac34637d815758" file could not be downloaded: failed to open stream: No route to host
    Now trying to download from source
  - Installing symfony/process (v3.1.3)
    Cloning 04c2dfaae4ec56a5c677b0c69fac34637d815758

Installation failed, deleting ./composer.json.
The disk hosting /root/.composer is full, this may be the cause of the following exception

                                                                                                                                         
  [RuntimeException]                                                                                                                     
  Failed to clone https://github.com/symfony/process.git via https, ssh protocols, aborting.                                             
  - https://github.com/symfony/process.git                                                                                               
    error: Failed connect to github.com:443; Operation now in progress while accessing https://github.com/symfony/process.git/info/refs  
                                                                                                                                         
    fatal: HTTP request failed                                                                                                           
  - git@github.com:symfony/process.git                                                                                                   
    ssh: connect to host github.com port 22: No route to host                                                                            
    fatal: The remote end hung up unexpectedly                                                                                           
                                                                                                                                         

require [--dev] [--prefer-source] [--prefer-dist] [--no-plugins] [--no-progress] [--no-update] [--update-no-dev] [--update-with-dependencies] [--ignore-platform-reqs] [--sort-packages] [-o|--optimize-autoloader] [-a|--classmap-authoritative] [--] []...
Copy after login
Copy after login

There will always be a symfony/process download failure process, and the reason cannot be found at all. I cry, cry, cry...

Solve it by yourself. I forgot to modify the global configuration of composer. The mirror still needs to use the domestic mirror,
composer config -g repo.packagist composer https://packagist.phpcomposer...
How stupid!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template