-
zsh: command not found: flutterfireFlutter 2024. 5. 16. 18:25
firebase로 flutter 앱을 만들 때 위 에러를 만날 수 있다.
flutterfire configure --project=~~
명령어를 입력할 때 flutterfire의 환경변수가 제대로 추가되어 있지 않으면 zsh(현재 shell) 가 제대로 찾지 못하기 때문이다.
이 명령어 전에 아래 명령어를 통해 cli를 설치했다면
dart pub global activage flutterfire_cli
warning으로 친절히 해결법을 같이 알려줬을 것이다.
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"
zhc를 사용한다면 위 경로를 .zshrc 를 열어 추가해준다.
vi ~/.zshrc
추가했다면 실행해주고
source ~/.zshrc
제대로 추가되었는지 확인해본다.
which flutterfire
경로를 알려주면 해결!
이후 다시 flutterfire configure를 해보자.
flutterfire configure --project=~~
'Flutter' 카테고리의 다른 글
[flutter] 1000 자리마다 쉼표 넣기 (0) 2024.05.19 Exception `require': cannot load such file -- xcodeproj (LoadError) / flutterfire configure --project= (0) 2024.05.16 [Flutter] 동적 리스트 ListView (0) 2024.04.29 [Flutter] 프로젝트를 clone 했는데 패키지를 찾을 수 없을 때 (0) 2024.01.29 [Flutter] 상대 시간 표시하기 (1) 2024.01.28