1. MacOs Dart环境安装

news2024/11/25 13:54:58

前置材料:需要安装dart的Mac设备, 一颗会用搜索引擎的聪明大脑


一步步讲一下homebrew的安装流程

我个人安装时遇到的情况 大家做个参考 如果你遇到的问题和我的不一样

可以来这里 homebrew快速安装指引 可入群咨询


首先, 我其实是安装过homebrew的

网上常见的dart安装命令如下

brew tap dart-lang/dart
brew install dart

所以我一开始是直接执行

brew tap dart-lang/dart
# 不出意外的报错了😫 报错信息如下
# ==> Tapping dart-lang/dart
## Cloning into '/usr/local/Homebrew/Library/Taps/dart-lang/homebrew-dart'...
## fatal: unable to access 'https://github.com/dart-lang/homebrew-dart/': HTTP/2 stream 1 was not closed cleanly before end of the underlying stream
## Error: Failure while executing; `git clone https://github.com/dart-lang/homebrew-dart /usr/local/Homebrew/Library/Taps/dart-lang/homebrew-dart --origin=origin --template=` exited with 128.

然后去搜解决方案


方案一

sudo chown -R $(whoami) $(brew --prefix)/*
# 执行完之后重新 brew tap dart-lang/dart
# 没有生效

方案二

cd /usr/local/Homebrew/Library/Taps/
cd homebrew
brew update
# brew 更新成功了😄 日志如下
## Updated 2 taps (homebrew/core and homebrew/cask).
## ==> New Formulae
## aarch64-elf-binutils                     livekit-cli
## aarch64-elf-gcc                          llama
## abi-compliance-checker                   llvm@12
## abi-dumper                               llvm@13
## abricate                                 llvm@14
## acl                                      lmfit
## ...                                      ...
## ...                                      ...
## ==> Outdated Formulae
## gettext   git       icu4c     node      nvm       p7zip     pcre2     yarn
## 
## You have 8 outdated formulae installed.
## You can upgrade them with brew upgrade
## or list them with brew outdated.

我很开心的以为这就OK了, 然后继续执行

brew tap dart-lang/dart
# 居然又报错了😫 这次是不一样的报错信息
## Error: Cannot install in Homebrew on ARM processor in Intel default prefix (/usr/local)!
## Please create a new installation in /opt/homebrew using one of the
## "Alternative Installs" from:
##   https://docs.brew.sh/Installation
## You can migrate your previously installed formula list with:
##   brew bundle dump

我tm

原来是因为

我原来的设备是intel内核的Mac,换到这台M1的时候直接用了数据迁移

而M1的homebrew和intel的homebrew是不太一样的

原来的homebrew能用,但是不完全能用。

好吧好吧

然后我又开始解决这个问题


方案一

来自stackoverflow的大神方案

原文链接

/usr/sbin/softwareupdate --install-rosetta --agree-to-license
# 这一步蛮顺利的 直接就装完了
arch -x86_64 /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
# 在国内的话 这一步建议挂个梯子, 境外的源毕竟很容易断掉
# 第一次超时了
## curl: (56) LibreSSL SSL_read: error:02FFF03C:system library:func(4095):Operation timed out, errno 60
# 第二次正常执行 日志如下
## ==> Checking for `sudo` access (which may request your password)...
## Password:
## ==> This script will install:
## /usr/local/bin/brew
## /usr/local/share/doc/homebrew
## /usr/local/share/man/man1/brew.1
## /usr/local/share/zsh/site-functions/_brew
## /usr/local/etc/bash_completion.d/brew
## /usr/local/Homebrew
## ==> The following existing directories will be made writable by user only:
## /usr/local/share/zsh
## /usr/local/share/zsh/site-functions
## ==> The Xcode Command Line Tools will be installed.
## 
## Press RETURN/ENTER to continue or any other key to abort:
## ==> /usr/bin/sudo /bin/chmod u+rwx /usr/local/share/zsh /usr/local/share/zsh/site-functions
## ==> /usr/bin/sudo /bin/chmod go-w /usr/local/share/zsh /usr/local/share/zsh/site-functions
## ==> /usr/bin/sudo /usr/sbin/chown -R admin:admin /usr/local/Homebrew
## ==> Searching online for the Command Line Tools
## ==> /usr/bin/sudo /usr/bin/touch /tmp/.com.apple.dt.CommandLineTools.installondemand.in-progress
## 
## ==> Installing Command Line Tools for Xcode-14.2
## ==> /usr/bin/sudo /usr/sbin/softwareupdate -i Command\ Line\ Tools\ for\ Xcode-14.2
## Software Update Tool
## 
## Finding available software
## 
## Downloading Command Line Tools for Xcode
## 
## Downloaded Command Line Tools for Xcode
## Installing Command Line Tools for Xcode
## Done with Command Line Tools for Xcode
## Done.
## ==> /usr/bin/sudo /usr/bin/xcode-select --switch /Library/Developer/CommandLineTools
## ==> /usr/bin/sudo /bin/rm -f /tmp/.com.apple.dt.CommandLineTools.installondemand.in-progre s
## ==> Downloading and installing Homebrew...

当我看到 Downloading and installing Homebrew...

我以为终于OK了

然而 现实又给了我沉重的一击

fatal: 无法访问 'https://github.com/Homebrew/brew/':HTTP/2 stream 1 was not closed cleanly before end of the underlying stream

官方的镜像死活连不上

继续找


方案二

把镜像源改到中科大

传送门

执行以下命令

git -C "$(brew --repo)" remote set-url origin https://mirrors.ustc.edu.cn/brew.git
git -C "$(brew --repo homebrew/core)" remote set-url origin https://mirrors.ustc.edu.cn/homebrew-core.git
git -C "$(brew --repo homebrew/cask)" remote set-url origin https://mirrors.ustc.edu.cn/homebrew-cask.git
echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.ustc.edu.cn/homebrew-bottles/bottles' >> ~/.zprofile
source ~/.zprofile
# 以上命令执行完后均不会有任何提示

执行完后 再次安装brew

arch -x86_64 /bin/bash -c "$(curl -fsSL https://gitee.com/ineo6/homebrew-install/raw/master/install.sh)"
# 终于搞定了😭 日志如下
## ==> Checking for `sudo` access (which may request your password)...
## Password:
## ==> This script will install:
## /usr/local/bin/brew
## /usr/local/share/doc/homebrew
## /usr/local/share/man/man1/brew.1
## /usr/local/share/zsh/site-functions/_brew
## /usr/local/etc/bash_completion.d/brew
## /usr/local/Homebrew
## ==> 安装提示
## 中文安装教程(建议收藏):https://brew.idayer.com/
## 也可以查阅,Mac下镜像飞速安装Homebrew教程 :https://zhuanlan.zhihu.com/p/90508170
## 如果你想换源,可以使用镜像助手:https://brew.idayer.com/guide/change-source/
## 安装遇到问题,可以通过讨论群寻求帮助。
## 请按回车键(RETURN)继续安装,按其他任意按键取消安装
## ==> /usr/bin/sudo /usr/sbin/chown -R admin:admin /usr/local/Homebrew
## ==> Downloading and installing Homebrew...
## HEAD 现在位于 336c2c792 Merge pull request #14733 from Bo98/api-security
## HOMEBREW_BREW_GIT_REMOTE set: using https://mirrors.ustc.edu.cn/brew.git as the Homebrew/brew Git remote.
## HOMEBREW_CORE_GIT_REMOTE set: using https://mirrors.ustc.edu.cn/homebrew-core.git as the Homebrew/homebrew-core Git remote.
## ==> Downloading https://formulae.brew.sh/api/formula.json
######################################################################## 100.0%
## ==> Downloading https://formulae.brew.sh/api/cask.json
######################################################################## 100.0%
## ==> Installation successful!

## ==> Homebrew has enabled anonymous aggregate formulae and cask analytics.
## Read the analytics documentation (and how to opt-out) here:
##   https://docs.brew.sh/Analytics
## No analytics data has been sent yet (nor will any be during this install run).

## ==> Homebrew is run entirely by unpaid volunteers. Please consider donating:
##   https://github.com/Homebrew/brew#donations

## ==> Next steps:
## - 🎉 恭喜,安装成功!运行  brew help 开始体验吧

终于可以安装dart了😄

arch -x86_64 brew install dart
# 日志如下
## ==> Downloading https://formulae.brew.sh/api/formula.json
######################################################################## 100.0%
## ==> Downloading https://formulae.brew.sh/api/cask.json
######################################################################## 100.0%
## ==> Fetching dart-lang/dart/dart
## ==> Downloading https://storage.googleapis.com/dart-archive/channels/stable/release/2.19.2/sdk/dartsdk-macos-x64-release.zip
######################################################################## 100.0%
## ==> Installing dart from dart-lang/dart
## ==> Caveats
## Please note the path to the Dart SDK:
##  /usr/local/opt/dart/libexec
## ==> Summary
## 🍺  /usr/local/Cellar/dart/2.19.2: 1,040 files, 639.9MB, built in 8 seconds
## ==> Running `brew cleanup dart`...
## Disable this behaviour by setting HOMEBREW_NO_INSTALL_CLEANUP.
## Hide these hints with HOMEBREW_NO_ENV_HINTS (see `man brew`).

很棒

# 然后浅敲一个dart
dart
##  ╔════════════════════════════════════════════════════════════════════════════╗
##  ║ The Dart tool uses Google Analytics to report feature usage statistics     ║
##  ║ and to send basic crash reports. This data is used to help improve the     ║
##  ║ Dart platform and tools over time.                                         ║
##  ║                                                                            ║
##  ║ To disable reporting of analytics, run:                                    ║
##  ║                                                                            ║
##  ║   dart --disable-analytics                                                 ║
##  ║                                                                            ║
##  ╚════════════════════════════════════════════════════════════════════════════╝

## A command-line utility for Dart development.

## Usage: dart <command|dart-file> [arguments]

## Global options:
## -h, --help                 Print this usage information.
## -v, --verbose              Show additional command output.
##     --version              Print the Dart SDK version.
##     --enable-analytics     Enable analytics.
##     --disable-analytics    Disable analytics.

## Available commands:
##   analyze    Analyze Dart code in a directory.
##   compile    Compile Dart to various formats.
##   create     Create a new Dart project.
##   devtools   Open DevTools (optionally connecting to an existing application).
##   doc        Generate API documentation for Dart projects.
##   fix        Apply automated fixes to Dart source code.
##   format     Idiomatically format Dart source code.
##   info       Show diagnostic information about the installed tooling.
##   migrate    Perform null safety migration on a project.
##   pub        Work with packages.
##   run        Run a Dart program.
##   test       Run tests for a project.

## Run "dart help <command>" for more information about a command.
## See https://dart.dev/tools/dart-tool for detailed documentation.

就很nice


dart的安装及我遇到的问题与解决方案就这些,对你有参考的的话希望可以点个赞或者留个收藏!

能粉一下就更好了

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.coloradmin.cn/o/365311.html

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈,一经查实,立即删除!

相关文章

2003 -Cant connect to MySql server on IP地址 (10060)----在docker安装的MySQL连接阿里云服务器

MySQL配置 这个问题是因为在数据库服务器中的mysql数据库中的user的表中没有权限(也可以说没有用户)&#xff0c;下面将记录我遇到问题的过程及解决的方法。 在搭建完LNMP环境后用Navicate连接出错 遇到这个问题首先到mysql所在的服务器上用连接进行处理 0、docker exec -it m…

界面控件DevExpress WinForm——轻松构建类Visual Studio UI(二)

DevExpress WinForm拥有180组件和UI库&#xff0c;能为Windows Forms平台创建具有影响力的业务解决方案。DevExpress WinForm能完美构建流畅、美观且易于使用的应用程序&#xff0c;无论是Office风格的界面&#xff0c;还是分析处理大批量的业务数据&#xff0c;它都能轻松胜任…

嵌入式常用知识

12、并发和并行的区别&#xff1f; 最本质的区别就是&#xff1a;并发是轮流处理多个任务&#xff0c;并行是同时处理多个任务。 你吃饭吃到一半&#xff0c;电话来了&#xff0c;你一直到吃完了以后才去接&#xff0c;这就说明你不支持并发也不支持并行。 你吃饭吃到一半&…

推荐5款实用小工具,第五款更是小白最爱

作为一个黑科技软件爱好者&#xff0c;电脑里肯定是不会缺少这方面的东西&#xff0c;今天的5款实用小工具闪亮登场了。 1.磁盘空间分析——SpcaeSniffer SpcaeSniffer是一款可视化硬盘空间占用布局大小的查询工具&#xff0c;软件体积小巧&#xff0c;使用简单。软件可对所需…

Android Studio翻译插件推介(Translation)

前言 Android Studio翻译插件适合英语水平不太好的程序员&#xff08;比如&#xff1a;我&#xff09;&#xff0c;最常用的翻译插件Translation和AndroidLocalize&#xff0c;本文主要讲解Translation&#xff0c;亲测可用。 先看看效果&#xff1a;这里是Android的API,任意选…

apache、iis设置301教程(适用虚拟主机)

当前提供教程是通过重写规则实现301,目前西部数码主机面板已经开发"301转向"功能可快捷设置&#xff1a; 如果部署了https访问&#xff0c;请忽略此教程&#xff0c;部署https的网站请参考&#xff1a;https://www.west.cn/faq/list.asp?unid1419 进入业务管理-虚…

单通道说话人语音分离——Conv-TasNet(Convolutional Time-domain audio separation Network)

单通道说话人语音分离——Conv-TasNet模型(Convolutional Time-domain audio separation Network) 参考文献&#xff1a;《Conv-TasNet: Surpassing Ideal Time-FrequencyMagnitude Masking for Speech Separation》 1.背景 在真实的声学环境中&#xff0c;鲁棒的语音处理通常…

【蓝桥杯每日一题】差分算法

&#x1f34e; 博客主页&#xff1a;&#x1f319;披星戴月的贾维斯 &#x1f34e; 欢迎关注&#xff1a;&#x1f44d;点赞&#x1f343;收藏&#x1f525;留言 &#x1f347;系列专栏&#xff1a;&#x1f319; 蓝桥杯 &#x1f319;我与杀戮之中绽放&#xff0c;亦如黎明的花…

银河麒麟V10桌面版系统将用户开发Qt界面程序添加为开机自启动

银河麒麟V10桌面版系统将用户开发Qt界面程序添加为开机自启动 银河麒麟V10桌面版系统允许用户开发自己的qt界面程序并将其添加为开机自启动。这样&#xff0c;每次开机后&#xff0c;用户开发的qt界面程序会自动启动&#xff0c;无需手动打开。 要将用户开发的qt界面程序添加…

走进chatGPT新一代机器人

chatGPT这款新一代对话式人工智能便在全球范围狂揽1亿名用户&#xff0c;并成功从科技界破圈&#xff0c;成为街头巷尾的谈资。chatGPT能干什么&#xff1f;打开官网https://openai.com/blog/chatgpt/ &#xff0c;完了&#xff0c;芭比Q了试下其他家的接口讲笑话写代码写解决方…

格雷码应用意义及编解码

文章目录1. 格雷码的应用意义2. 由自然数编码获得格雷码2.1 对称法实现2.2 公式法实现3. 由格雷码解码获得自然数1. 格雷码的应用意义 学过晶体管知识的朋友们都知道&#xff0c;数据位跳变就相当于硬件电路中的晶体管翻转。许多位同时跳变就相当于多个晶体管同时翻转&#xf…

【C++】STL之空间配置器 | STL总结

​&#x1f320; 作者&#xff1a;阿亮joy. &#x1f386;专栏&#xff1a;《吃透西嘎嘎》 &#x1f387; 座右铭&#xff1a;每个优秀的人都有一段沉默的时光&#xff0c;那段时光是付出了很多努力却得不到结果的日子&#xff0c;我们把它叫做扎根 目录&#x1f449;什么是空…

全球首个云渗透测试认证专家课程发布!腾讯安全领衔编制

2月20日&#xff0c;国际云安全联盟CSA发布了“云渗透测试认证专家CCPTP”课程体系&#xff0c;这是全球首个云渗透测试能力培养课程及人才认证项目&#xff0c;有效地弥补了云渗透测试认知的差距和技能人才培养的空白。腾讯安全在该项目中担任核心课程编撰单位。CSA是全球中立…

【双指针问题】LeetCode344、345、 844、283问题详解及代码实现

Halo&#xff0c;这里是Ppeua。平时主要更新C语言&#xff0c;C&#xff0c;数据结构算法......感兴趣就关注我吧&#xff01;你定不会失望。 &#x1f308;个人主页&#xff1a;主页链接 &#x1f308;算法专栏&#xff1a;专栏链接 我会一直往里填充内容哒&#xff01; &…

曼恩斯特在创业板注册生效:拟募资约5亿元,彭建林夫妇为实控人

2月21日&#xff0c;深圳证券交易所披露的信息显示&#xff0c;深圳市曼恩斯特科技股份有限公司&#xff08;下称“曼恩斯特”&#xff09;的注册生效。据贝多财经了解&#xff0c;曼恩斯特于2021年6月30日在创业板递交招股书&#xff0c;2022年6月15日获得上市委会议通过&…

老戏骨李立群真敢说,互联网吐槽郝蕾演技太差

说起老戏骨李立群&#xff0c;可能很多人都想不起来&#xff0c;他究竟出演过什么影视作品&#xff0c;不过这依然不能阻挡他的走红。李立群的走红非常偶然&#xff0c;因为在大陆拍戏多年&#xff0c;他已经在上海买房定居&#xff0c;当然偶尔也会去台北省亲。 在上海疫情爆发…

【C++】3.类和对象(中)

1.类的6个默认成员函数 一个类什么都没有不是空类 我们没有写相关函数 但编译器会自动生成6个默认函数 2.构造函数 1概念 构造函数是一个特殊的成员函数&#xff0c;名字与类名相同,创建类类型对象时由编译器自动调用&#xff0c;保证每个数据成员都有一个合适的初始值&…

微服务架构中的多级缓存设计还有人不懂?

今天我们来聊聊缓存这个话题&#xff0c;看看在微服务环境下如何设计有效的多级缓存架构。主要涉及三方面内容&#xff1a; Web 应用的客户端缓存&#xff1b;应用层静态资源缓存&#xff1b;服务层多级缓存。 首先&#xff0c;咱们先讲解微服务架构的多级缓存设计。 微服务…

ElasticSearch 学习笔记总结(一)

文章目录一、 数据的 分类二、 ElasticSearch 介绍三、 ElasticSearch 搭建四、正排索引 和 倒排索引五、ES HTTP 索引 操作六、ES HTTP 文档 操作七、ES HTTP 查询数据1. 条件查询2. 分页查询3. 排序查询4. 多条件查询5. 全文检索 完全匹配 高亮显示6. 聚合查询八、 ES HTTP 映…

2.22JVM

一.学习目标1)JVM内存区域划分2)JVM的类加载机制3)JVM的垃圾回收1.JVM执行流程程序在执行之前先要把Java代码转换为字节码(.class),JVM首先需要通过一定的方式类加载器把文件加载到运行时数据区,而字节码文件是JVM的一套指令集规范,并不能直接交给底层操作系统去执行,因此需要特…