Flutter 개발 환경설치 on Mac

Updated:

1.Flutter 설치 (version 2.5.1-stable)

Flutter official get started

Get the Flutter SDK

1.Fluuter SDK 을 다운로드 합니다.

image

2.압축풀고 폴더를 Machintosh HD > Users > ${username} > Developer( 추가 폴더 생성) 안에 이동 시킵니다.

3.terminal 을 열고 vim ~/.zshrc 을 통해서 flutter path 를 설정합니다. (i 를 누르면 insert mode 로 번경됩니다)

# in .zshrc
# $home 은 users/jacobko(사용자명) 을 자동으로 설정해 줍니다. (pwd 를 해서 그 경로를 복사해 넣습니다)
  export PATH="$PATH:/Users/jacobko/Developer/flutter/bin"

# code 붙여 넣고 esc 하고 :wq 해서 저장하고 종료 해준다

4.flutter 가 잘 설치 되었는지 확인해 본다

which flutter

flutter --version

image

flutter doctor 를 하게되면 flutter 개발에 필요한 tools 가 있는 지 check 하고 없는것은 X 표시로 나타납니다

image

2.Android Studio 설치

Flutter Android setup official guid

Download android studio

1.android studio 를 다운로드 받아 설치 한뒤에 preferences 실행합니다.

2.Plugins > 하단에 Browse Repositories 실행한다음에 Flutter plugin 을 받습니다.

3.flutter project 로 새로운 application 을 만듭니다.

image

3.iOS setup

1.Xcode 를 최신버전 다운 받고 terminal 에서 아래의 코드를 넣습니다

sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer
sudo xcodebuild -runFirstLaunch
sudo xcodebuild -license

2.iOS simulator 실행

open -a Simulator

3.Deploy to iSO device

  • 실제 iSO 기기에 설치하기 위해 cocoapods 가 설치 되어 야 합니다.
sudo gem install cocoapods
pod setup

4.실제 프로젝트 root 경로에 ios 폴더에서 pod init 이라고 terminal 에서 실행하게 되면 Podfile 이라고 파일이 설치가 되는데

Pod 란? Swift / Object-C 어플리케이션을 필드하는데 필요한 세팅을 관리하는 도구 입니다. 추가 라이브러리 같은 것을 POD 를 통해서 합니다

  • pod install 하게 되면 POD 가 설치가 되면서 Pods 폴더가 생성 됩니다.

🔶 🔷 📌 🔑

Reference

flutter official page - https://flutter.dev/docs/get-started/install/macos

Categories:

Updated:

Leave a comment