14
6

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.

【Flutter】ターミナルで “zsh: command not found:flutter” の解決方法

Posted at

#原因
・flutterがインストールされている場合、flutterの環境パスがうまく設定されていないのが原因
・OSのアップデートなどで出ることが稀にある
・vimエディタを使ってパスの設定が必要

#解決手順

  1. ターミナルを起動
  2. vim ~/.zshrc と入力
  3. iキー を押してInsertモードに変更
  4. **export PATH="$PATH:/hogehoge/flutter/bin"**と入力

    hogehogeの部分はflutterをインストールしたパス (追記1)
  5. escapeキーでInsertモードを終了
  6. :wq と入力すると保存して終了 (追記2)
  7. ターミナルの再起動
  8. flutter doctor で診断

(追記1)

・パスがわからなかったら、Finderなどでflutterがあるフォルダを開く
・ターミナルにflutterフォルダをドラッグ&ドロップすると、フォルダのパスを表示してくれる
・Usersのnameフォルダに入ってる場合は下記が例
 export PATH="$PATH:/Users/name/flutter/bin"

(追記2)

:q 保存済みのファイルからvimを終了
:q! ファイルを保存しないでvimを終了
:wq ファイルを保存してからvimをを終了

14
6
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
14
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?