问题描述
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
.
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)
.
这篇关于错误:未找到 git - 使用 composer windows 安装 laravel的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!