1. 执行打开.bash_profile文件的命令:
open -e .bash_profile
如果你看到 .bash_profile does not exist.
执行 touch .bash_profile
创建 bash_profile文件
2.打开.bash_profile文件后直接在最末尾处追加设置flutter bin目录路径为环境变量:
export PATH=${PATH}:/Users/leeyukun/flutter/bin
3.保存关闭.bash_profile文件之后,需要执行以下命令,更新环境变量:
source ~/.bash_profile
打开终端执行flutter doctor就发现有效果了.
bash_profile需要配置的内容
第一部分是环境变量,路径应该是你本地flutter的路径
第二部分是镜像,下载插件时需要用到
// 配置 flutter、dart 环境变量 export FLUTTER_HOME=/Users/leeyukun/Desktop/flutter export PATH=$PATH:/Users/leeyukun/Desktop/flutter/bin export PATH=$PATH:/Users/leeyukun/Desktop/flutter/bin/cache/dart-sdk/bin // 配置镜像,下载 flutter 依赖速度快 export PUB_HOSTED_URL=https://pub.flutter-io.cn export FLUTTER_STORAGE_BASE_URL=https://storage.flutter-io.cn
每次打开终端都需要先输入source .bash_profile,才能使用flutter命令有点麻烦
通过文章来源:https://www.toymoban.com/news/detail-460076.html
echo 'source ~/.bash_profile' >> ~/.zshrc
这样一来不用每次打开都输入source .bash_profile文章来源地址https://www.toymoban.com/news/detail-460076.html
到了这里,关于mac下配置Flutter环境变量的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!