* 터미널 설정에 따라서 bash_profile or zshrc 에 경로 설정을 해야한다. 필자와 같이 터미널이 zsh 로 기본 으로 되어 있다면 bash_profile 을 할 경우에는 매번 source ~/.bash_profile 처리를 해야하기 때문에 zshrc 로 처리하는게 편할 것이다. bash_profile 과 zshrc 의 차이 설명 링크 1. open (1) bash_profile 열기 (새 창으로 뜬다) open -e ~/.bash_profile or open -e ~/.zshrc (2) bash_profile 에서 경로 추가 export PATH=$PATH:{플러터 폴더 경로}/bin 필자의 경우 export PATH=$PATH:/Users/hoon/flutter/bin (3) 변경된 b..