https://flutter-ko.dev/docs/get-started/install/macos
mac에서 잡기 어마 무시하다.. 그래도 공식 문서 참고하고 iterm 에서 친절하게 설명을 다 해 주니 그대로 따라해보자.
설치할 것.
공홈에서 Flutter SDK의 최신 stable 릴리즈를 받고 설명대로 압축을 풀자
mkdir Development
cd ~/Development
unzip ~/Downloads/flutter_macos_1.22.6-stable.zip
open ~/.zshrc
export PATH="$PATH:$HOME/Development/flutter/bin"
source ~/.zshrc
flutter doctor
누락된 디펜던시를 모두 친절하게(?) 설명 해준다.
brew install watchman
안드로이드 스튜디오
brew install --cask android-studio
configure → Plugins 에서 Flutter 설치 (Drat는 자동)
Flutter plugin not installed, Dart plugin not installed 에러
→ 같은 디렉토리에 있어야한다. which flutter dart
으로 확인
해결법: 터미널에 입력
ln -s ~/Library/Application\\ Support/Google/AndroidStudio4.1/plugins ~/Library/Application\\ Support/AndroidStudio4.1`
라이센스 읽기
Xcode (16기가 ㄷㄷ)
sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer
sudo xcodebuild -runFirstLaunch
sudo xcodebuild -license
VSCode
flutter create my_app
cd my_app
code .
flutter run
이제 드디어 시작하자...
NEXT: 시작하기