가을기 Workspace

[플러터] mac에서 homebrew로 flutter 설치 (5초면 끝남) 본문

개발/개인앱

[플러터] mac에서 homebrew로 flutter 설치 (5초면 끝남)

가을기_ 2021. 10. 8. 01:21

0. homebrew가 설치되어 있다고 가정

 

1. 아래 커맨드 순차적으로 실행

brew install --cask android-studio
brew install --cask android-SDK
brew install --cask android-ndk
brew install --cask flutter

 

2. bash_profile 수정

vim ~/.bash_profile

## ## ## ## ## ## ## ## ##
## Flutter
## ## ## ## ## ## ## ## ##
export PATH="`pwd`/flutter/bin:$PATH"

 

3. xcode는 app store에서 설치할 것.

open -a Simulator

 

끝.

Comments