废话不多说,开始吧!
环境配置-Mac
1.先甩出来官网下载flutter安装包,解压到一个文件下面就行,任君选择,我是解压到了根目录下的一个study文件下。
Study2.添加配置,由于官方配置写的不是很容易上手,参考网上,奉上链接
由于在国内访问Flutter有时可能会受到限制,Flutter官方为中国开发者搭建了临时镜像,大家可以将如下环境变量加入到用户环境变量中:此镜像为临时的,不保证一直可用
export PUB_HOSTED_URL=https://pub.flutter-io.cn
export FLUTTER_STORAGE_BASE_URL=https://storage.flutter-io.cn
命令如下:
1. 命令行(terminal)进入主页(你的用户名下)
cd ~
2. 如果你的电脑里面有.bash_profile文件,跳过一步(进入步骤4)
3. 创建.bash_profile文件,命令:touch .bash_profile
4. 打开.bash_profile文件,命令:open -e .bash_profile
5.在打开的编辑器里面输入 (环境变量的配置)
6.保存,退出
7.更新配置信息,命令:source .bash_profile
.bash_profile内容如图:
.bash_profile3.运行 flutter doctor 该命令检查你的电脑环境的一些配置,一般错误会是xcode或者Android studio版本太低,或者没有安装一些SDK。
我的错误是缺少SDK - cmdline-tools 需要信任一些一些证书,升级cocoapods,可按照提示解决
解决如下:安装Android studio SDK cmdline-tools
cmdline-tools命令行安装
flutter doctor --android-licenses
Xcode installation is incomplete; 报错解决如下:
sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer
再次flutter doctor 完美配置成功!!!
网友评论