配置Flutter环境变量
1.进入用户的根目录
cd ~
2.创建.bash_profile
touch .bash_profile
3.编辑.bash_profile
open -e .bash_profile
4.在.bash_profile文件中输入
一、镜像:
export PUB_HOSTED_URL=https://pub.flutter-io.cn //国内用户需要设置
export FLUTTER_STORAGE_BASE_URL=https://storage.flutter-io.cn //国内用户需要设置
二、flutter/bin路径 (自行根据安装路径调整)
export PATH=~/flutter/bin:$PATH
- command+s保存
键盘 command+s
6.更新环境变量文件
source .bash_profile
7.验证
echo $PATH
如果此时有出现类似/xxx/xxx/flutter/bin ,证明环境变量更新成功,可以在任意窗口使用flutter命令,但此时要注意一点: 如果你使用的是zsh,关闭终端,重新启动终端时 ~/.bash_profile 将不会被加载,解决办法就是修改 ~/.zshrc 这样关闭终端再次启动时,~/.bash_profile 就会被再次加载
修改方法:echo 'source ~/.bash_profile' >> ~/.zshrc。