우기의 알 블로그 저자 한승욱이라고 합니다.
스스로 알을 깨고 나오는 새처럼
언젠가 알을 깨고 온전한 나 자신이 되었을 때, 그때를 기다리며 제 속에서 솟아 나오는 것을 글로써 표현하고자 합니다.
'개발 기술블로그'를 위주로 저 한승욱의 다양한 관심사, 생각, 철학 등을 포스팅합니다.
cd "원하는 위치로 이동"
unzip ~/Downloads/flutter_macos_1.22.5-stable.zip
export PATH="$PATH:`pwd`/flutter/bin" # 임시로 현재 터미널 창에 대해서만 PATH 변수를 설정
2) Flutter doctor 실행
flutter doctor
[✓] Flutter (Channel stable, 1.22.5, on macOS 11.0.1 20B29 darwin-x64, locale
en-KR)
[✗] Android toolchain - develop for Android devices
✗ Unable to locate Android SDK.
Install Android Studio from:
https://developer.android.com/studio/index.html
On first launch it will assist you in installing the Android SDK
components.
(or visit https://flutter.dev/docs/get-started/install/macos#android-setup
for detailed instructions).
If the Android SDK has been installed to a custom location, set
ANDROID_SDK_ROOT to that location.
You may also want to add it to your PATH environment variable.
[✓] Xcode - develop for iOS and macOS (Xcode 12.3)
[!] Android Studio (not installed)
[!] IntelliJ IDEA Ultimate Edition (version 2020.2.3)
✗ Flutter plugin not installed; this adds Flutter specific functionality.
✗ Dart plugin not installed; this adds Dart specific functionality.
[✓] VS Code (version 1.52.0)
# 현재 내가 추가로 설치해야 되는 부분이 안내됨
3) Path 업데이트
export PATH="$PATH:[PATH_TO_FLUTTER_GIT_DIRECTORY]/flutter/bin"
# 위에서 임시로 설정한 경로를 고정으로 설정하는 부분
# 테스트
echo $PATH
which flutter
2. Flutter 개발 환경 세팅
개요 - wooogy-egg.tistory.com/4
Flutter 설치
맥OS에서 설치
참고: https://flutter-ko.dev/docs/get-started/install/macos
1) Flutter SDK 다운로드
2) Flutter doctor 실행
3) Path 업데이트
4) xcode 설정
5) ios 시뮬레이터 설정
6) Flutter 앱 만들고 실행
7) ios 기기에 배포 - 추후 진행 예정
8) Android 설정 - 생략
'기술개발 > Django' 카테고리의 다른 글