Mac安装Flutter
2020-11-30 本文已影响0人
iOS丶Michelle
系统版本(我的电脑非M1系列芯片)
macOS Big Sur
终端
zsh
首先下载 Flutter SDK(Flutter官网或者Flutter交流群也会有)
安装目录.png配置.bash_profile
这里需要用到.bash_profile 文件,这是个隐藏文件,您可以这样查看
ls -a
如果没有的话,创建一个,输入
touch .bash_profile
打开.bash_profile并编辑
open .bash_profile
配置项第一条根据你自己的路径来,其他的直接Copy
export PATH=/Users/hb/flutter/bin:$PATH
export PUB_HOSTED_URL=https://mirrors.tuna.tsinghua.edu.cn/dart-pub
export FLUTTER_STORAGE_BASE_URL=https://mirrors.tuna.tsinghua.edu.cn/flutter
直接关闭即可保存修改
更新刚配置的环境变量
source .bash_profile
这里其实已经差不多弄好了,还有点不爽是因为您这次退出了终端,下次还得执行一下source .bash_profile多麻烦啊,容易累死
flutter doctor
flutter -h
配置.zshrc文件
查看 、编辑 打开终端,输入
open -e .zshrc
如果您没有的话,自己创建一个
touch .zshrc
配置.zshrc文件.png
然后按照图里这样配置
source ~/.bash_profile
这样就可以了,下次你退出终端,再打开,输入flutter命令不需要再source .bash_profile