Mac 配置 Flutter 环境变量

假设 Flutter 的环境变量为 User/simon/flutter/bin

  1. 打开终端,输入下面的命令来打开 .bash_profile 文件。如果本地没有 .bash_profile 可以使用 touch ~/.bash_profile 来创建。
open ~/.bash_profile
  1. .bash_profile 中添加下面的代码,并保存
# 请根据自己的 Flutter 存放的路径来设置对应的环境变量
export FLUTTER=/Users/simon/flutter/bin

export PATH=$FLUTTER:$PATH
  1. 在终端中运行下面的命令让环境变量的设置生效
source ~/.bash_profile

你可能感兴趣的:(Mac 配置 Flutter 环境变量)