본문 바로가기
Development Solutions/Flutter & Dart

How to solve "could not find dart in your flutter sdk" when you build flutter project

by Dev Diary Hub 2024. 6. 5.
반응형

플러터 빌드 시 could not find dart in your flutter sdk 에러 해결 방법

How to solve "could not find dart in your flutter sdk" when you build flutter project

 

 

 

방법 1. 간단한 해결

 

VS code를 이용중이라면 Flutter와 Dart 익스텐션을 제거했다가 다시 설치하면 된다.

 

반응형

방법2. 본질적인 해결

 

1. 환경변수에 flutter, dart 경로 추가

export PATH="$PATH:/Users/sjh/development/flutter/bin"
export PATH="$PATH:/Users/sjh/development/flutter/bin/cache/dart-sdk/bin"
source ~/.zshrc  # 또는 source ~/.bashrc

 

 

2. Flutter 재설치

rm -rf /Users/sjh/development/flutter
git clone https://github.com/flutter/flutter.git -b stable /Users/sjh/development/flutter

 

반응형