根據https://flutter.cn/docs/get-started/install/macos進行安裝。macos
進入終端輸入命令:vim
vim ~/.bash_profile
在文件內配置添加環境變量:(a: Insert Mode/ i: Replace Insert Mode)bash
export PATH=${PATH}:/(安裝Flutter的路徑)/flutter/binide
保存退出(:wq)code
使用命令:get
source ~/.bash_profile
it
執行刷新命令class
經過該指令判斷Dart和Flutter是否爲同一路徑變量
which flutter dart
若是不相同以下:flutter
/path-to-flutter-sdk/bin/flutter /usr/local/bin/dart
使用相同命令進入bash_profile
vim ~/.bash_profile
修改最上面路徑:
在 /usr/local/bin: 前加入 /path-to-flutter-sdk/bin:
保存退出
配置完成。
即可使用flutter doctor 命令進行配置檢查。