错误:未找到 git - 使用 composer windows 安装 laravel未找到、错误、git、laravel

2023-09-07 08:59:36 作者:逆天存在

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' is not recognized as and internal or external command, operable program or batch file

when I try and run composer create-project laravel/laravel learning-laravel.

tx git AND composer

I installed the git GUI which also comes with a command line shell, but I don't know why its not recognising the command (I'm issuing the create-project command in the normal windows command line prompt).

I also tried running the command from the git shell, which worked, but when I tried php artisan serve it gave me an error saying CLI has stopped working.

Does anyone know how to fix the git error? I'd rather use the windows command shell instead of the git one as it can then go into my wamp/www file

解决方案

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

Right click on Computer. Click Advanced System Settings Click Environment Variables inside the Advanced Menu Under System Variables, scroll to PATH Add ;"C:path ogitin";"C:path ogitcmd"

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