본문 바로가기
▶ 프로그래밍 [Programming]/▷ 플러터 [Flutter]

[플러터] Pub installs executables into $HOME/.pub-cache/bin 오류 해결 방법

by (๑′ᴗ‵๑) 2024. 5. 19.
반응형

 

 

안녕하세요,

 

오늘은 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.) 에러를 해결하는 방법 대한 포스팅하도록 하겠습니다.

 

 

오류 해결 방법

 

터미널에서 zshrc 열기

open ~/.zshrc 

 

마지막 행에 아래 라인 추가하기

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

 

적용하기

source ~/.zshrc

 

 

감사합니다.

 

반응형

댓글