지금은 typescript로 react를 조금 만졌지만 내가 원래 하고 싶었던 것은 app 개발! 내가 원하는 아이템을 빠르게 구현해내고 시장반응을 빠르게 본 후 별로다 싶으면 버릴 수 있는 app 개발능력을 원했다. 따라서 현재 42seoul(에꼴42의 교육과정을 밴치마킹한 한국의 교육 프로그램)의 교육과정을 대부분 통과하여 여유로운 지금 flutter를 공부하여 정리하려고 한다.
42seoul에서 교육생들이 flutter piscene(프랑스어로 수영장을 뜻하며 짧은기간동안 혼자서 헤엄쳐 나올 수 있는 능력을 기르는 교육 프로그램의 flutter 버전)을 만들어 뒀다는 사실을 알고 그 교육과정을 진행하게 되었다. 빠르고 확실하게 piscene을 끝내고 내가 원하는 아이템을 만들어 보자!!
ex00
이 문제는 flutter 설치와 flutter doctor를 이용하여 필요한 종속성을 설치하는 것이 포인트다.
flutter 설치 및 세팅
- flutter 설치 후 압축해제
- flutter folder 위치 PATH에 추가
- 나는 PATH=$PATH:"~/flutter/bin"해서 계속 적용이 안됨
- PATH=$PATH:~/flutter/bin으로 ""을 없애니 잘 된다....
- flutter doctor 를 실행하면 여러가지 종속성에 대해서 언급한다. 안드로이드 스튜디오, xcode 등등, 시키는 대로 설치한다.
android studio 설치
android sdk commend-line tool 설치
Xcode 설치
CocoaPods not installed.
CocoaPods is used to retrieve the iOS and macOS platform side's plugin code that responds to your plugin usage on the Dart side. Without CocoaPods, plugins will not work on iOS or macOS. For more info, see [https://flutter.dev/platform-plugins](https://flutter.dev/platform-plugins) To install see [https://guides.cocoapods.org/using/getting-started.html#installation](https://guides.cocoapods.org/using/getting-started.html#installation) for instructions.
- https://gyutaehan.me/macesococoapodsseolchihegyul/ sudo gem install cocoapods로 설치하니 이런 에러가 발생
- brew로 설치하자. brew install cocoapods
flutter doctor을 실행했을 때 이런 모습을 볼 수 있으면 준비완료!!
댓글