概要
FlutterでFirebaseを使う時にflutterfire-cliをインストールしfirebase_options.dart
を追加する必要がある。
flutterfire_cliをインストールするには以下を実行する。
dart pub global activate flutterfire_cli
その後firebase_options.dart
を追加するためにflutterfire configure
を実行する。
しかし、pathを通していないとcommand not foundのエラーが出力される。
解決法
上記のdart pub global activate flutterfire_cli
時に出力されていたwarnnigを確認する。
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"
Activated flutterfire_cli 0.2.1+1.
それぞれのshellにあった設定ファイルにpathを追加する。
ex) bashの場合.bashrc
, zshの場合.zshrc
pathの通し方はwarrningにあるようにexport PATH="$PATH":"$HOME/.pub-cache/bin"
を追加する。