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

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Convert JSON integers and floats to strings(将JSON整数和浮点数转换为字符串)
in php how do I use preg replace to turn a url into a tinyurl(在php中,如何使用preg替换将URL转换为TinyURL)
all day appointment for ics calendar file wont work(ICS日历文件的全天约会不起作用)
trim function is giving unexpected values php(Trim函数提供了意外的值php)
Basic PDO connection to MySQL(到MySQL的基本PDO连接)
PHP number_format returns 1.00(Php number_Format返回1.00)