mac 上配置flutter 环境变量
2020-06-23 本文已影响0人
90后的晨仔
- 1.打开
bash_profile
文件然后将所需要的环境变量配置上去.
注意事项: 打开该文件的方式目前小编知道的有两种
1.
终端执行vim ~/.bash_profile
2.
终端执行open ~/.bash_profile
3.
无论哪一种打开方式在操作完毕之后必须记得执行一下这个命令source $HOME/.bash_profile
,然后你的配置才能生效。
- 2.需要配置的内容如下
export PATH=/Users/xxxxx/Development/flutter/bin:$PATH// 该 PATH 字段的值为 flutter 的安装文件路径,即 PATH=flutter 文件安装路径/bin:$PATH
export ANDROID_HOME="/Users/survivors/Library/Android/sdk"// 该 ANDROID_HOME 字段的值为 Android Studio 中 SDK 的本地路径,具体路径需在 Android Studio 配置中查看
export PATH=${PATH}:${ANDROID_HOME}/tools:$ANDROID_HOME/platform-tools
export PUB_HOSTED_URL=https://pub.flutter-io.cn// 国内用户需要设置
export FLUTTER_STORAGE_BASE_URL=https://storage.flutter-io.cn// 国内用户需要设置
-
3.配置完毕之后执行
source $HOME/.bash_profile
。 -
4.执行
Snip20200623_4.pngflutter doctor
出现如下图证明配置成功。
注意事项: 可能有的朋友在执行
flutter doctor
命令之后会出现-bash: flutter: command not found
的错误。大多数情况是因为配置的内容路径有问题导致的,所以仔细检查一下路径。