Flutter環境變量安裝——macOS

步驟:

根據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_profileit

執行刷新命令class

使得Dart路徑與Flutter路徑同樣:

經過該指令判斷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 命令進行配置檢查。

相關文章
相關標籤/搜索