Flutter/캠프

24.11.29 오늘 있었던 오류들

우왕차 2024. 11. 29. 20:54

1. firebase CLI 연동 과정 중 문제

 파이베이스를 CLI로 연동하는 과정에서 아래의 코드를 치고 난 후 문제가 발생함

dart pub global activate flutterfire_cli

 

 

 

아래의 글이 나오면서 실행이 안되었다.

 

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"

 

글을 읽어보자. 내 경로에 인식이 안되고 있다고 하고 있었다. 

 

https://dalgonakit.tistory.com/191

 

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

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 b

dalgonakit.tistory.com

위의 블로그를 보고 따라서 경로를 추가하고 vscode를 재실행하니 다행히 실행이 되었다.