当前位置: 首页 > news >正文

绵阳市建设银行网站电子商务网站开发问题研究

绵阳市建设银行网站,电子商务网站开发问题研究,ui生成器网站,七台河新闻直播准备工作 1、升级Macos系统为最新系统 2、安装最新的Xcode 3、电脑上面需要安装brew https://brew.sh/ 4、安装chrome浏览器(开发web用) 下载Flutter、配置Flutter环境变量、配置Flutter镜像 下载Flutter SDK https://docs.flutter.dev/release/archive?tabmacos 根据自己…准备工作 1、升级Macos系统为最新系统 2、安装最新的Xcode 3、电脑上面需要安装brew https://brew.sh/ 4、安装chrome浏览器(开发web用) 下载Flutter、配置Flutter环境变量、配置Flutter镜像 下载Flutter SDK https://docs.flutter.dev/release/archive?tabmacos 根据自己的电脑选择arm64或x64 查看CPU型号可以通过查看CPU型号来区分CPU是ARM还是X86ARM的CPU型号一般以“ARM”开头而X86的CPU型号一般以“Intel”或“AMD”开头。 查看指令集可以通过查看CPU支持的指令集来区分CPU是ARM还是X86ARM支持的指令集一般是ARM指令集而X86支持的指令集一般是x86指令集。 可以通过下面的命令查询uname -a ~ % uname -a Darwin PhoenixdeMBP 22.6.0 Darwin Kernel Version 22.6.0: Wed Jul 5 22:22:05 PDT 2023; root:xnu-8796.141.3~6/RELEASE_ARM64_T6000 arm64 把下载好的Flutter SDK随便减压到你想安装Sdk的目录如 /Users/phoenix/Documents/flutter_sdk/flutter 把 Flutter安装目录的bin目录配置到环境变量然后把Flutter国内镜像也配置到环境变量里面 vim ~/.bash_profile vim ~/.zshrcexport PATH/Users/phoenix/Documents/flutter_sdk/flutter/bin:$PATH export PUB_HOSTED_URLhttps://pub.flutter-io.cn export FLUTTER_STORAGE_BASE_URLhttps://storage.flutter-io.cn 里面的/Users/phoenix/Documents/flutter_sdk/flutter/bin需要改为自己电脑的。在输入环境变量的时候默认情况下是不可输的需要按下ℹ️键才可以输入。输入完成过后按下esc键、键输入wq退出。让配置环境变量生效。 flutter --version 如果能出来版本说明flutter sdk配置成功。 注意:如果配置完成后输入flutter --version告诉你flutter不是内置命令之类的错误的话可能sdk没有配置成功也可能sdk下载的时候没有下载全 运行flutter doctor 命令检测环境 第一次运行 flutter doctor的时候会提示下面错误 ~ % flutter doctorYou 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. Building flutter tool... Resolving dependencies... Got dependencies. Failed to find the latest git commit date: VersionCheckError: Command exited with code 69: git -c log.showSignaturefalse log HEAD -n 1 --prettyformat:%ad --dateiso Standard out: Standard error: 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.Returning 1970-01-01 08:00:00.000 instead. Doctor summary (to see all details, run flutter doctor -v): [!] Flutter (Channel [user-branch], 0.0.0-unknown, on macOS 13.5.1 22G90darwin-arm64, locale zh-Hans-CN)! Flutter version 0.0.0-unknown on channel [user-branch] at/Users/phoenix/Documents/flutter_sdk/flutterCurrently on an unknown channel. Run flutter channel to switch to anofficial channel.If that doesnt fix the issue, reinstall Flutter by following instructionsat https://flutter.dev/docs/get-started/install.Cannot resolve current version, possibly due to local changes.Reinstall Flutter by following instructions athttps://flutter.dev/docs/get-started/install.! Upstream repository unknown source is not a standard remote.Set environment variable FLUTTER_GIT_URL to unknown source to dismissthis error. [✗] Android toolchain - develop for Android devices✗ Unable to locate Android SDK.Install Android Studio from:https://developer.android.com/studio/index.htmlOn first launch it will assist you in installing the Android SDKcomponents.(or visit https://flutter.dev/docs/get-started/install/macos#android-setupfor detailed instructions).If the Android SDK has been installed to a custom location, please useflutter config --android-sdk to update to that location.[!] Xcode - develop for iOS and macOS (Xcode 14.3.1)✗ Xcode end user license agreement not signed; open Xcode or run the commandsudo xcodebuild -license.✗ Xcode requires additional components to be installed in order to run.Launch Xcode and install additional required components when prompted orrun:sudo xcodebuild -runFirstLaunch✗ CocoaPods not installed.CocoaPods is used to retrieve the iOS and macOS platform sides plugincode that responds to your plugin usage on the Dart side.Without CocoaPods, plugins will not work on iOS or macOS.For more info, see https://flutter.dev/platform-pluginsTo install seehttps://guides.cocoapods.org/using/getting-started.html#installation forinstructions. [✓] Chrome - develop for the web [!] Android Studio (not installed) [✓] VS Code (version 1.80.0) Error executing simctl: 69You 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.[✓] Connected device (2 available) [!] Network resources ✗ An HTTP error occurred while checking https://github.com/: Connectionclosed before full header was received! Doctor found issues in 5 categories.这里如果这里没有安装 brew 的需要安装安装方法可以参考 https://editor.csdn.net/md/?articleId132603606 分根据报错信息分别执行下面命令 brew install cocoapods pod setup sudo xcodebuild -runFirstLaunch在执行brew install cocoapods报错 ~ % brew install cocoapods Error: You have not agreed to the Xcode license. Please resolve this by running:sudo xcodebuild -license accept在这里是因为Xcode没有打开激活只需要打开Xcode同意各种协议即可在终端安装应用程序了。 依次执行 brew install cocoapods pod setup sudo xcodebuild -runFirstLaunch这次brew install cocoapods 成功了 再次执行~ % flutter doctor 遇到下面的问题 ✗ An HTTP error occurred while checking https://github.com/: Connectionclosed before full header was received后面翻墙再次执行~ % flutter doctor ~ % flutter doctor Doctor summary (to see all details, run flutter doctor -v): [✓] Flutter (Channel stable, 3.13.2, on macOS 13.5.1 22G90 darwin-arm64, localezh-Hans-CN) [✗] Android toolchain - develop for Android devices✗ Unable to locate Android SDK.Install Android Studio from:https://developer.android.com/studio/index.htmlOn first launch it will assist you in installing the Android SDKcomponents.(or visit https://flutter.dev/docs/get-started/install/macos#android-setupfor detailed instructions).If the Android SDK has been installed to a custom location, please useflutter config --android-sdk to update to that location.[✓] Xcode - develop for iOS and macOS (Xcode 14.3.1) [✓] Chrome - develop for the web [!] Android Studio (not installed) [✓] VS Code (version 1.80.0) [✓] Connected device (2 available) [✓] Network resources! Doctor found issues in 2 categories.最后一个报错android studio官网下载软件就可以了 https://developer.android.google.cn/studio/ % flutter doctor Doctor summary (to see all details, run flutter doctor -v): [✓] Flutter (Channel stable, 3.13.2, on macOS 13.5.1 22G90 darwin-arm64, localezh-Hans-CN) [✓] Android toolchain - develop for Android devices (Android SDK version 34.0.0) [✓] Xcode - develop for iOS and macOS (Xcode 14.3.1) [✓] Chrome - develop for the web [✓] Android Studio (version 2022.3) [✓] VS Code (version 1.80.0) [✓] Connected device (2 available) [✓] Network resources• No issues found!你认真做好一件事会解释所有事。O(∩_∩)O
http://www.hkea.cn/news/14506542/

相关文章:

  • 网站开发需求 模板使用apmserv本地搭建多个网站
  • 湖南网站推wordpress主题windows
  • 网站开发备案百度seo推广软件
  • 宣城网站优化用wordpress做微博
  • icann官方网站锦州网站建设推广
  • 网站建设与维护课程设计报告书交通建设工程质量监督局网站
  • 模块网站和定制网站区别网站开发个人基本情况1000字
  • 北京模板网站开发公司网络推广方案联系昔年下拉
  • 菏泽网站建设谁最出名公司网站设计制作长沙
  • 网站最好的优化是什么腾讯cdn加速wordpress
  • 多国语言外贸网站模板网站备备份教程
  • 做小程序好还是做微网站好php网站怎么做后台管理
  • dedecms蓝色企业网站模板免费下载c net 做网站好吗
  • 满洲里建设局网站首页怎么创建网页链接
  • 四川省建设领域信用系统网站网站域名的作用是什么意思
  • 国外创意型网站设计网站开发行业竞争大吗
  • 电商网站开发服务海南省建设工程质量安全检测协会网站
  • 做问卷的网站生成二维码浙江建设厅网站
  • wordpress地址和站点地址什么网站可免费发布信息
  • 域名网站这么做电子商务网站建设实验报告
  • 寻找郑州网站建设公司商业空间展示设计
  • 电商网站运营步骤什么网站是做家教的
  • 网站备案都审核什么资料儿童网站 源码
  • xcode 网站开发同时做网站建设和代账
  • 有哪些推广的网站专业网站建设微信官网开发
  • 榆社县济南网站建设公司 大学手机网站建设规划书
  • 网站 建设 汇报东莞最新招聘
  • 如何在手机上搭建网站Wordpress调用百度云
  • 杨幂做的网站广告遵义网站开发的公司
  • 程序员 做网站 微信公众号 赚钱思而忧网站