1. 플러터 개발 페이지 접속해서 각 OS 에 맞는 라이브러리 다운로드하기!

https://flutter.dev/docs/get-started/install

 

Install

Select the operating system on which you are installing Flutter:{{site.alert.note}} **Are you on Chrome OS?** If so, see the official [Chrome OS Flutter installation docs!](/docs/get-started/install/chromeos){{site.alert.end}}

flutter.dev

 

2. 환경변수 셋팅 (맥을 기준)

 

Flutter SDK 를 받고 압축을 푼 후, 적당히 폴더에 위치 해 둔다.

해당 폴더의 경로를 복사해두자.

 

자신의 이름이 있는 폴더에서 Shift + Command + . 을 누르면 숨김파일이 보여진다.

.bash_profile 에 경로를 저장해두자.

 

#VI 를 이용한 경로 저장 방법

터미널에서 sudo vi .bash_profile 을 입력하자.

i 를 누른뒤 (insert)

 

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

 

입력하고, (위 /flutter/bin 은 각자 맥 환경에서 달라진다. 나같은 경우는 /Document/dev/flutter/bin)

 

esc 누르고,

 

:wq  를 입력하고 엔터를 친다. (wq 를 저장후, 종료, :q 는 그냥 종료)

 

터미널에서, flutter 를 입력하면 뭔가 실행되는데, 그렇다면 환경변수가 잘 잡힌것이다!

 

 

 

comming soon...

'하이브리드 > 플러터' 카테고리의 다른 글

Text  (0) 2019.11.19
Posted by 자바리즘
,