CocoaPods 未安装。跳过 Pod 安装

问题描述 投票:0回答:8

我的应用程序运行良好,直到我做了 2 个小更改。

  1. 在 Xcode 中的 Target runner 上,我为项目启用了位码。
  2. 我将Android studio更新到最新版本。

Android Studio 大黄蜂 | 2021年1月1日 内部版本 #AI-211.7628.21.2111.8092744,建于 2022 年 1 月 19 日 运行时版本:11.0.11+0-b60-7590822 x86_64 VM:JetBrains s.r.o. 的 OpenJDK 64 位服务器 VM macOS 12.0.1 GC:G1年轻代,G1老一代 内存:1280M 核心数:4 注册表:external.system.auto.import.disabled=true 非捆绑插件:Dart (211.7798)、org.jetbrains.kotlin (211-1.6.10-release-923-AS7442.40)、io.flutter (63.2.2)

之后,当我在 iOS 模拟器上运行我的 flutter 应用程序时,我收到此错误。 虽然我已经禁用了位码并再次尝试。我得到了同样的错误。我安装并重新安装了 cocapoads 还是同样的错误。我不知道是什么原因导致这个错误。你能帮我吗?请

 Warning: CocoaPods not installed. Skipping pod install.
 CocoaPods is used to retrieve the iOS and macOS platform side's plugin code 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-plugins
 To install see https://guides.cocoapods.org/using/getting-  started.html#installation for instructions.

 CocoaPods not installed or not in valid state.
 Error launching application on iPhone 13.
ios flutter android-studio cocoapods
8个回答
28
投票

UPD:已在 2021.1.1 补丁 1 中修复,请参阅此处的发行说明

发生这种情况可能是因为 AndroidStudio 不知道

$PATH
文件中提供的
~/.*rc
.bashrc
.zshrc
等)

您可以通过从终端启动它来确保:

open /Applications/Android\ Studio.app

编辑:这是 Bumblebee 版本中已确认的错误

解决方法是添加缺失的标志:

bash chmod +x /Applications/Android\ Studio.app/Contents/bin/printenv

您只需要做一次


11
投票

打开终端运行 ->

chmod +x /Applications/Android\ Studio.app/Contents/bin/printenv

再试一次......它应该可以工作。


9
投票

我在 Pod 可用性检查中遇到异常。

which pod

更新后的工作室的 $PATH env 似乎没有正确选择。 (您可以通过在 flutter 插件上启用详细日志记录模式来检查它)。

解决方法是从终端启动 Android studio:

open /Applications/Android\ Studio.app 

更新: Android Studio Bumblebee (2021.1.1) 补丁 1 修复了此问题。


7
投票

我也遇到了这个问题,在 Apple Silicon MacBook 上使用 Android studio 从命令行启动或直接都失败了

我使用 rbenv 将 ruby 版本更新到 2.7.3,然后它可以从命令行运行。

open /Applications/Android\ Studio.app

注意:默认的 macOS 系统 ruby 版本是 2.6.8,有一些与该版本不兼容的 gems


2
投票

如果投票最高的解决方案无法通过 Bumblebee 版本解决此问题,那么您可以尝试 Android Studio 的 beta Chipmunk 版本。

我运行的是 M1 Mac,这个版本 2021.2.1 Beta 1 能够从工具栏正确运行 flutter 应用程序。

enter image description here


0
投票

我已经搜索了所有解决方案,当前帖子的答案可以解决问题。但基本上看来 flutter android studio(仅最近更新的 bumblebee 版本)插件会触发 pod 错误,因为 xcode 和 android studio 终端都运行得很好。

我们可能需要继续跟踪这个问题。在flutter团队给出明确答案之前,我计划使用

flutter run --debug
,因为终端运行提供“r”用于热重载和“R”用于热重启。或者我们也可以每次都使用
open /Applications/Android\ Studio.app


0
投票

我通过运行修复了它:

sudo gem install ffi

0
投票

在我的例子中,我检查 $PATH 变量,其中不存在

pod
可执行文件的路径

使用通过brew安装了pod的MacBook Pro M1

© www.soinside.com 2019 - 2024. All rights reserved.