沃梦达 / 编程问答 / php问题 / 正文

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

error: git was not found - installing laravel with composer windows(错误:未找到 git - 使用 composer windows 安装 laravel)

本文介绍了错误:未找到 git - 使用 composer windows 安装 laravel的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

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.

  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 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的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本文标题为:错误:未找到 git - 使用 composer windows 安装 laravel

基础教程推荐