1. 安装flutter, 地址: 安装和环境配置 - Flutter 中文文档 - Flutter 中文开发者网站 - Flutter
2. 安装成功后,通过flutter doctor检测环境。以mac为例,出现了CocoaPods installed but not working 错误提示时,以下为解决方案:
2.1 rvm install ruby-3.1.0, 可能出现依赖错误问题,使用如何指令即可:
rvm reinstall ruby-3.1.0 --with-openssl-dir=/usr/local/opt/openssl;
可以安装ruby-3.2.0,不过遇到了activesupport=7.1.1 版本不能卸载;
2.2 gem list查询安装的activesupport版本号,当版本号大于7.0.8, 会遇到如下错误:
2.3 sudo gem uninstall activesupport;
2.4 sudo gem install activesupport -v 7.0.8
2.5 gem list | grep activesupport 查看activesupport版本信息
3. flutter doctor 检测时出现如下表示正常:文章来源:https://www.toymoban.com/news/detail-720328.html
文章来源地址https://www.toymoban.com/news/detail-720328.html
到了这里,关于flutter doctor检测环境,出现CocoaPods installed but not working的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!