error: git was not found - installing laravel with composer windows

后端 未结 5 1629
时光说笑
时光说笑 2021-01-12 10:20

I\'m getting an error saying:

failed to clone https://github.com/php-fig/log.git, git was not found, check that it is installed and in your PATH env.

\'git\         


        
5条回答
  •  臣服心动
    2021-01-12 10:25

    You need to add the directory you installed git to to your PATH environment variable.

    1. Right click on Computer.
    2. Click Advanced System Settings
    3. Click Environment Variables inside the Advanced Menu
    4. Under System Variables, scroll to PATH
    5. Add ;"C:\path\to\git\bin";"C:\path\to\git\cmd"

    Test the git command in the command prompt to see if it worked. Git is usually located in Program Files or Program Files(x86).

提交回复
热议问题