MacOS Catalina上的颤振安装

2024-03-03 09:59
文章标签 安装 macos catalina 颤振

本文主要是介绍MacOS Catalina上的颤振安装,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

System Requirements:Operating Systems: macOS (64-bit)Disk Space: 2.8 GB (does not include disk space for IDE/tools).Tools: bash, curl, git 2.x, mkdir, rm, unzip, which, zip

系统需求:作业系统:macOS(64位元)磁碟空间:2.8 GB(不包含IDE /工具的磁碟空间)工具:bash,curl,git 2.x,mkdir,rm,解压缩,其中,zip

download Flutter from https://flutter.dev/docs/get-started/install/macos

从https://flutter.dev/docs/get-started/install/macos下载Flutter

Image for post
https://flutter.dev/docs/get-started/install/macos https://flutter.dev/docs/get-started/install/macos
Image for post
download flutter
下载扑

Unzip the folder

解压缩文件夹

for the following steps please turn on the path bar ( finder->view-> show path bar/ option+ cmd+p)

对于以下步骤,请打开路径栏(finder-> view-> show path bar / option + cmd + p )

Image for post
double click on the zip file to unzip
双击压缩文件以解压缩

go to Users/YourUsername and create a new folder called “Dev” for example

转到Users / YourUsername并创建一个名为“ Dev”的新文件夹

Image for post

copy the unzipped Flutter folder to the new “Dev” folder

将解压缩的Flutter文件夹复制到新的“ Dev”文件夹

Image for post

open Spotlight (cmd+ spacebar) and search “terminal”,click enter to open it

打开Spotlight( cmd +空格键 )并搜索“终端”,单击Enter将其打开

Image for post

open the terminal and go to the preferences cmd+ ,change Shells open with to /bin/zshI use the Homebrew profile, to have a better contrast

打开终端并转到首选项cmd +,将Shells open with更改为/ bin / zsh我使用Homebrew配置文件,以获得更好的对比度

Image for post
hit enter
点击进入

open the terminal, type: vim~/ .zshrc (enter)

打开终端,输入: vim〜/ .zshrc(输入)

Image for post

open the flutter website, and copy the following line: export PATH=”$PATH[PATH_TO_FLUTTER_GIT_DIRECTORY]/flutter/bin”

打开flutter网站,然后复制以下行: export PATH =“ $ PATH [PATH_TO_FLUTTER_GIT_DIRECTORY] / flutter / bin”

Image for post

Open the terminal window and type “i” to edit and insert a new linedelete everything in […..] -> export PATH=”$PATH: …/flutter/bin

打开终端窗口,输入“ i”以编辑并插入新行,删除[…..]-> export PATH =“ $ PATH:…/ flutter / bin ”中的所有内容

Image for post

we have extracted the flutter folder into the Users/Username/Dev folder beforenow open the terminal and point to the flutter/bin folder -> $Home/Dev/flutter/bin

我们先将flutter文件夹解压缩到Users / Username / Dev文件夹中,然后再打开终端并指向flutter / bin文件夹-> $ Home / Dev / flutter / bin

Image for post

hit the Esc key, and type: wq!

Esc键 ,然后键入:wq!

Image for post

close the current terminal window, and create a new one (cmd+n)run flutter — version, to check if flutter is installed

关闭当前的终端窗口,并创建一个新的( cmd + n )运行flutter — version ,以检查是否已安装flutter

Image for post
Image for post

now download Android Studio from https://developer.android.com/studio and install the dmg

现在从https://developer.android.com/studio下载Android Studio并安装dmg

Image for post
Image for post

now run Android Studio ( standard setup)

现在运行Android Studio(标准设置)

Image for post

after installation, click on the configure button and open the Preferences

安装后,单击配置按钮并打开首选项

Image for post

Go to Plugins and install the Flutter Plugin

转到插件并安装Flutter插件

Image for post

I changed the font size (Font) so that the code will be more readable and also the theme to Darcula

我更改了字体大小( Font ),以使代码更具可读性,并且使Darcula的主题更清晰

Image for post

IMPORTANT STEP:Go to System Settings-> Android SDK -> SDK Tools and UNCHECK “HIDE OBSOLETE PACKAGES”Install the Android SDK Tools (Obsolete)

重要步骤:转到系统设置-> Android SDK-> SDK工具,然后取消选中“隐藏过时的软件包”安装Android SDK工具(已淘汰)

Image for post

restart Android Studio and start new Flutter project

重新启动Android Studio并启动新的Flutter项目

Image for post

choose Flutter Application

选择Flutter应用程序

Image for post

check if the Flutter SDK path is correct

检查Flutter SDK路径是否正确

Image for post
Image for post

click on finish and run the AVD Manager -> Tools/AVD Manager

单击完成并运行AVD Manager->工具/ AVD Manager

Image for post

Create a new device

创建一个新设备

Image for post
Image for post

Select an Android Version and download it

选择一个Android版本并下载

Image for post
Image for post

Run your virtual device with the triangle button under Actions

使用“操作”下的三角形按钮运行虚拟设备

Image for post

good job! we are done with the android part, go to Android Studio and run the program (^R)

做得好! 我们已经完成了android部分,转到Android Studio并运行程序(^ R)

Image for post
Image for post

Install Xcode and run it afterwards at least one time ( Appstore)

安装Xcode并随后至少运行一次(Appstore)

Image for post

create a new terminal and insert following lines:sudo xcode-select — switch/Applications/Xcode.app/Contents/Developer sudo xcodebuild -runFirstLaunch

创建一个新终端并插入以下行: sudo xcode-select —开关/Applications/Xcode.app/Contents/Developer sudo xcodebuild -runFirstLaunch

Image for post

you might need to install cocoapods: $ sudo gem install cocoapods

您可能需要安装cocoapods: $ sudo gem install cocoapods

Image for post

open the ios simulator with the terminal, type :open -a Simulator

使用终端打开ios模拟器,输入:open -a Simulator

Image for post

run the simulator and start the application in Android Studio

运行模拟器并在Android Studio中启动应用程序

Image for post

if you want you can install Flutter in VSCode

如果您愿意,可以在VSCode中安装Flutter

Image for post

now open the terminal and run flutter doctor -v to if everything works fine

现在打开终端并运行flutter doctor -v到一切正常

Image for post

故障排除 (Trouble shooting)

  • you might need to accept the android licenses :

    您可能需要接受android许可证:

    you might need to accept the android licenses : flutter doctor — android-licenses

    您可能需要接受android许可证: flutter doctor — android-licenses

Image for post

谢谢阅读, (Thanks for reading,)

https://github.com/congnguyendinh0

https://github.com/congnguyendinh0

https://www.linkedin.com/in/congnguyendinh0/

https://www.linkedin.com/in/congnguyendinh0/

翻译自: https://medium.com/swlh/flutter-installation-on-macos-catalina-dfcbbbec09c9


http://www.taodudu.cc/news/show-8479342.html

相关文章:

  • 颤振稳定性叶瓣图_使用块阵模式进行颤振场验证
  • 机械工程学报-封面研究-基于自适应变分模态分解与功率谱熵差的机器人铣削加工颤振类型辨识
  • 颤振稳定性叶瓣图_在屏幕之间导航—颤振
  • 使用人工智能自动测试颤振应用程序
  • 颤振稳定性叶瓣图_颤振异步redux graphql
  • matlab动力学共振颤振研究
  • 颤振稳定性叶瓣图_颤振主题系统
  • 颤振稳定性叶瓣图_颤振性能优化
  • 双路颤振频率Hz可设置比例阀放大器
  • 深度聚类paper汇总
  • paperwithcode
  • AAAI2021 accepted paper list
  • 使用Tex 撰写paper-TexStudio设置默认字体样式大小等
  • Raphael学习之Paper常用API(四)
  • 如何写paper
  • Paper:txyz_ai(一款帮助科研人员阅读PDF论文ChatGPT利器)的简介、安装、使用方法之详细攻略
  • 抑郁症康复日记
  • 计算机抑郁症与干涉相关的,抑郁症
  • matlab 自带的数据集fisheriris
  • 【文末福利】为什么我们要掌握Linux系统编程?
  • 什么是TCP的混合型自时钟
  • 炮打洋鬼子创作总结
  • oracle 过滤字段中的中文,不再洋不洋土不土
  • field list什么意思_闲话Python之range()到底是个什么玩意儿
  • AI全栈大模型工程师(二十二)什么是模型训练
  • 什么是mysql锁_简单理解MySQL锁
  • 什么是MAS : 一种目标管理工具和方法
  • 什么是接口API
  • python函数一般不能_Python程序中对一个函数的调用不能出现在该函数的定义之前...
  • 打字练习软件 Type Fu mac中文版技能介绍
  • 这篇关于MacOS Catalina上的颤振安装的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



    http://www.chinasem.cn/article/769267

    相关文章

    Linux系统中卸载与安装JDK的详细教程

    《Linux系统中卸载与安装JDK的详细教程》本文详细介绍了如何在Linux系统中通过Xshell和Xftp工具连接与传输文件,然后进行JDK的安装与卸载,安装步骤包括连接Linux、传输JDK安装包... 目录1、卸载1.1 linux删除自带的JDK1.2 Linux上卸载自己安装的JDK2、安装2.1

    macOS无效Launchpad图标轻松删除的4 种实用方法

    《macOS无效Launchpad图标轻松删除的4种实用方法》mac中不在appstore上下载的应用经常在删除后它的图标还残留在launchpad中,并且长按图标也不会出现删除符号,下面解决这个问... 在 MACOS 上,Launchpad(也就是「启动台」)是一个便捷的 App 启动工具。但有时候,应

    Linux卸载自带jdk并安装新jdk版本的图文教程

    《Linux卸载自带jdk并安装新jdk版本的图文教程》在Linux系统中,有时需要卸载预装的OpenJDK并安装特定版本的JDK,例如JDK1.8,所以本文给大家详细介绍了Linux卸载自带jdk并... 目录Ⅰ、卸载自带jdkⅡ、安装新版jdkⅠ、卸载自带jdk1、输入命令查看旧jdkrpm -qa

    MySQL Workbench 安装教程(保姆级)

    《MySQLWorkbench安装教程(保姆级)》MySQLWorkbench是一款强大的数据库设计和管理工具,本文主要介绍了MySQLWorkbench安装教程,文中通过图文介绍的非常详细,对大... 目录前言:详细步骤:一、检查安装的数据库版本二、在官网下载对应的mysql Workbench版本,要是

    Linux安装MySQL的教程

    《Linux安装MySQL的教程》:本文主要介绍Linux安装MySQL的教程,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录linux安装mysql1.Mysql官网2.我的存放路径3.解压mysql文件到当前目录4.重命名一下5.创建mysql用户组和用户并修

    pip无法安装osgeo失败的问题解决

    《pip无法安装osgeo失败的问题解决》本文主要介绍了pip无法安装osgeo失败的问题解决,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一... 进入官方提供的扩展包下载网站寻找版本适配的whl文件注意:要选择cp(python版本)和你py

    Android App安装列表获取方法(实践方案)

    《AndroidApp安装列表获取方法(实践方案)》文章介绍了Android11及以上版本获取应用列表的方案调整,包括权限配置、白名单配置和action配置三种方式,并提供了相应的Java和Kotl... 目录前言实现方案         方案概述一、 androidManifest 三种配置方式

    Python解析器安装指南分享(Mac/Windows/Linux)

    《Python解析器安装指南分享(Mac/Windows/Linux)》:本文主要介绍Python解析器安装指南(Mac/Windows/Linux),具有很好的参考价值,希望对大家有所帮助,如有... 目NMNkN录1js. 安装包下载1.1 python 下载官网2.核心安装方式3. MACOS 系统安

    Pycharm安装报错:Cannot detect a launch configuration解决办法

    《Pycharm安装报错:Cannotdetectalaunchconfiguration解决办法》本文主要介绍了Pycharm安装报错:Cannotdetectalaunchconfigur... 本文主要介绍了Pycharm安装报错:Cannot detect a launch configuratio

    pytorch+torchvision+python版本对应及环境安装

    《pytorch+torchvision+python版本对应及环境安装》本文主要介绍了pytorch+torchvision+python版本对应及环境安装,安装过程中需要注意Numpy版本的降级,... 目录一、版本对应二、安装命令(pip)1. 版本2. 安装全过程3. 命令相关解释参考文章一、版本对