美文网首页
mac flutter 环境配置

mac flutter 环境配置

作者: xymspace | 来源:发表于2021-04-19 23:11 被阅读0次
    • 下载Android studio
      地址:https://developer.android.com/studio

    • 下载flutter
      地址:https://flutterchina.club/get-started/install/

    • 配置 .bash_profile文件

      vim .bash_profile
      

      直接复制以下内容
      注意:FLUTTER=/Users/username/Development/flutter/bin ,务必填写 自己的flutter解压路径!!!

      export PUB_HOSTED_URL=https://pub.flutter-io.cn #国内用户需要设置
      export FLUTTER_STORAGE_BASE_URL=https://storage.flutter-io.cn #国内  用户需要设置
      export FLUTTER=/Users/username/Development/flutter/bin 
      export PATH=$FLUTTER:$PATH
      
      :wq!
      
    • 配置zsh

      open ~/.zshrc
      

      在文件最下方添加:

      source ~/.bash_profile
      

      保存。

    • 检查flutter运行环境
      运行:

      flutter doctor
      
    • 报错:

      Android licenses not accepted.  To resolve this, run: flutter doctor --android-licenses
      

      解决方案:

      flutter doctor --android-licenses
      

      一直输入 y

    • 安装vsCode
      地址:https://code.visualstudio.com/

    • 开始flutter第一个程序
      教程:https://flutterchina.club/get-started/test-drive/#vscode

    • 运行方式:
      如图,选择自己的工程,点击绿色运行按钮


      运行
    • 运行平台:
      点击图片右下角进行平台选择,也可热键F5 开始运行:


      选择平台

    相关文章

      网友评论

          本文标题:mac flutter 环境配置

          本文链接:https://www.haomeiwen.com/subject/tdzwlltx.html