-
VSCode에서 Flutter 확장 모듈을 설치후 'The Flutter Daemon failed to start' 오류가 발생하였다.
Show Log 를 눌러보니 아래와 같은 git path 관련 오류가 발생한 것이였다.
[FlutterDaemon] [Info] <== Error: Unable to find git in your PATH.
이런 오류가 발생하였다면 터미널에 아래 문장을 입력하여 해결할 수 있다.
git config --global --add safe.directory '*'
Unable to find git in your PATH in Flutter commands (solved) - Coding is Love
If you face this issue where you get the error “Unable to find git in your PATH” while running flutter commands like flutter doctor or…
codingislove.com
'Memo > Dart & Flutter' 카테고리의 다른 글
[Flutter] AppBar 배경 색상 사라짐, 색깔 지정 방법 (0) 2024.01.10 [Flutter] Stateless Widget과 Stateful Widget (0) 2024.01.09 [Dart] Object와 dynamic 차이 (1) 2024.01.04 Dart는 오버로딩을 지원하지 않는다. (0) 2024.01.03 [Dart] Python의 f-string과 유사한 String Interpolation (0) 2024.01.01