안녕하세요, 쯀리입니다.
오늘은 맥북 M3에서 Flutter를 설치해보겠습니다.
저는 기본적으로 Dart를 미리 수강하고 왔는데,
❗️Flutter를 배우고 싶은데 Dart를 한번도 배워보신적 없다면
Dart 먼저 배우고 오시는 것을 추천드립니다.
1. Download Flutter
Flutter 설치방법은 사용자마다 다르기 때문에 Flutter 홈에서 설치 방법을 따라 하시되,
제 블로그는 참고 해주시면 좋을 것 같습니다.
Flutter 홈페이지 : https://docs.flutter.dev/get-started/install/
1-1. SDK 설치하기
- For Window Users : https://chocolatey.org/
- 윈도우는 안드로이드, 웹 만 다운이 가능하다.
- Mac : HomeBrew에서 설치해줍니다.
brew install --cask flutter
유용한 명령어!
flutter doctor
안드로이드가 설치되어있지 않군요.
저는 IOS로 실습할 예정이라 xcode를 설치하겠습니다.
1-2. Xcode 설치
https://docs.flutter.dev/get-started/install/ 로 접속한다
xcode는 맥북은 애플 스토어에서 받으면 됩니다
sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer
sudo xcodebuild -runFirstLaunch
라이선스를 확인하라고 나오면 agree를 입력한다
// 라이센스 확인
sudo xcodebuild -license
// ios시뮬레이터 runtimes 다운
xcodebuild -downloadPlatform iOS
설치는 완료!
1-3. 시뮬레이터 열기
open -a Simulator
짜잔! 완료입니당
참조
※ 노마드코더 - Flutter For Beginners