본문 바로가기
FRONT-END/FLUTTER

flutter create command was unsuccessful - Error: Unable to find git in your PATH.

by 개남 2023. 5. 1.

안드로이드 스튜디오에서 New Flutter Project로 프로젝트 생성시 다음과 같은 에러가 발생했습니다. Project Creation Error : flutter create command was unsuccessful

저 상태에서 Rum Flutter Doctor를 클릭하면 안드로이드 스튜디오가 실행되면서 하단 flutter console창에 Error: Unable to find git in your PATH. 에러가 표시됩니다. Git이 설치되어있지 않다면 아래 사이트에 접속해서 다운받아 설치해줍니다.

https://git-scm.com/download/win

 

Git - Downloading Package

Download for Windows Click here to download the latest (2.40.1) 32-bit version of Git for Windows. This is the most recent maintained build. It was released 6 days ago, on 2023-04-25. Other Git for Windows downloads Standalone Installer 32-bit Git for Wind

git-scm.com

git을 설치한뒤 시스템 환경 변수 편집을 해줍니다. 하단 윈도우 버튼을 눌러 검색을 해도 되고 내PC > 속성 > 고급시스템설정 > 환경 변수를 선택해주면 됩니다.

환경변수 버튼을 클릭한뒤 사용자 변수에서 Path를 선택한 뒤 편집을 클릭해줍니다.

그리고 새로 만들기 버튼을 클릭해 C:\Windows\Ststem32를 추가해줍니다. 그리고 다시 안드로이드스튜디오 실행 후 flutter Porject를 생성하면 정상적으로 생성되는 것을 확인할 수 있습니다.

댓글