스터디/Flutter+Dart

Flutter 에러. $HOME/.pub-cache/bin, which is not on your path.

Dalmangyi 2022. 7. 24.

flutter를 이용해서 firebase를 설치할때면 " $HOME/.pub-cache/bin, which is not on your path. " 이런 에러를 자주 마주치게 된다. 

 

Warning: Pub installs executables into $HOME/.pub-cache/bin, which is not on your path.
You can fix that by adding this to your shell's config file (.bashrc, .bash_profile, etc.):

  export PATH="$PATH":"$HOME/.pub-cache/bin"

 

해결방법은 써있는것처럼 .bashrc파일이나 .bash_profile, .zshrc 파일에 [ export PATH="$PATH":"$HOME/.pub-cache/bin" ] 내용을 추가해주면 된다. 

 

터미널에 "$vi ~/.zshrc"를 입력해서 수정해주면 된다. 

그래도 안되면... 터미널을 껏다 키거나 안드로이드 스튜디오를 껏다키면 된다 ^^;;

 

댓글