7
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Firebase CLI を global install したのに、firebase: command not found と怒られるときの対処法。

Last updated at Posted at 2020-08-20

SUGOI USUI

terminal
yarn global add firebase-tools
export PATH="$(yarn global bin):$PATH"

// npm 使いなら
npm install -g firebase-tools
export PATH="$(npm bin -g):$PATH"

と、path を通してあげる良い。

補足

下で bin の場所を確認している。

terminal
yarn global bin
npm bin -g

短い投稿で申し訳ない。さっき firebase を触ろうとして初っ端から躓いたので。

7
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
7
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?