美文网首页
[Flutter]环境配置

[Flutter]环境配置

作者: 汴城码农 | 来源:发表于2023-03-05 15:44 被阅读0次

    第一步

    获取Flutter安装包

    https://flutter.cn/docs/get-started/install
    

    第二步

    找一个不常用的地方放置安装包,并配置环境变量

    export PATH=/Users/peng/flutter/bin:$PATH
    export PUB_HOSTED_URL=https://pub.flutter-io.cn
    export FLUTTER_STORAGE_BASE_URL=https://storage.flutter-io.cn
    

    第三步

    运行 查看环境配置是否正确

    $flutter doctor
    

    需要XCode、CocoaPods环境,另外需要Git,Xcode已包含
    通常会报Mac下需要CocoaPods环境,可以通过brew安装

    第四步

    安装brew,官网https://brew.sh/index_zh-cn
    建议国内镜像

    /bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)"
    
    

    第五步

    安装CocoaPods

    brew install cocoapods
    pod setup
    

    第六步

    运行flutter doctor,Xcode会提示运行两个命令,依次运行即可

    截屏2023-03-06 20.49.18.png
    sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer
    sudo xcodebuild -runFirstLaunch
    

    第七步

    运行flutter

    flutter create flutter01(项目名)
    flutter run
    

    使用VSCode编译器,下载插件DartFlutterFlutter Widget Snippets
    也可以在编译器中运行

    相关文章

      网友评论

          本文标题:[Flutter]环境配置

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