检查本地是否有.bash_profile文件
open -e .bash_profile
没有就创建一个
~>进入home 目录
cd ~
~>创建 .bash_profile
touch .bash_profile
有就打开编辑.bash_profile文件
open -e .bash_profile
flutter xcode android studio 下载
下载flutter Sdk 地址 :https://flutter.dev/docs/development/tools/sdk/releases?tab=macos
最好是下载稳定版的次级版本,尝鲜的行为值得肯定但不建议
xcode 下载 不赘述 appstore 下载安装即可
Android Studio 下载安装
下载地址:https://developer.android.google.cn/studio/
1.安装完成后添加环境变量
///Users/用户名/Library/Android/sdk 目录,替换为你自己的
export ANDROID_HOME=/Users/用户名/Library/Android/sdk
export PATH={ANDROID_HOME}/tools
export PATH={ANDROID_HOME}/platform-tools
安装java8SDK下载地址:
http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html
1.安装完成后添加环境变量
JAVA_HOME=/Library/Java/JavaVirtualMachines/jdk1.8.0_144.jdk/Contents/Home
PATH=JAVA_HOME/bin
CLASSPATH=.:JAVA_HOME/lib/tools.jar
export JAVA_HOME PATH CLASSPATH
fluter vscode环境配置
打开.bash_profile文件:open -e .bash_profile
此文件中编辑:export PATH=/Applications/flutter/bin:$PATH
其中/Applications/flutter/bin是flutter SDK bin 所在位置
更新刚配置的环境变量: source .bash_profile
重启命令行工具 检查flutter 版本: flutter --version
若出现:
You have not agreed to the Xcode license agreements, please run 'sudo xcodebuild
-license' from within a Terminal window to review and agree to the Xcode license
agreements.
终端 执行:sudo xcodebuild -license
(不出意外会卡在这里😁)
这里的意思是 下载完的Xcode 并未 agree 也就是没有打开,很简单打开Xcode agree即可。
至此 fluter —— Xcode ;
最后打开vscode 打开命令面板 >flutter new…. 创建一个新的flutter项目,运行成功即OK