zsh: command not found: flutterfire

Viewed 18

I am using Mac OS. i am trying register my project in firebase and use Crashlytics in firebase to check if any crash occurs in my app I had used

curl -sL https://firebase.tools | bash

command to install flutter tools it worked fine after that I tried to run

flutterfire configure

command but it throws

zsh: command not found: flutterfire

I know that I must set $path variable but to set path variable I don't know where is my flutter tools has installed in my Mac. kindly help me to set $PATH variable

1 Answers

run before dart pub global activate flutterfire_cli

Related