dart Cocoapods错误,而运行的iOS应用程序,导致错误的pod安装

zc0qhyus  于 12个月前  发布在  iOS
关注(0)|答案(2)|浏览(90)

我试图创建iOS和Android应用程序,它适用于Android,但对于iOS,同时运行flutter run,它将需要大量的时间安装pod使用pod install,最后它会给给予一个错误,如下所示。

Error output from CocoaPods:
↳
         Cloning into
         '/var/folders/f6/g4njsx3x5tx5dswcbsh29tdh0000gn/T/d20210605-16785-1rc0t
         ko'...
         fatal: unable to access 'https://github.com/grpc/grpc.git/': Failed to
         connect to github.com port 443: Connection refused
Error running pod install
Error launching application on iPhone 12 Pro Max.

字符串
我试过这些帖子,但没有运气。
error running pod install
error running pod install pods-runner

pubsec.yaml

dependencies:
  flutter:
    sdk: flutter
  cupertino_icons: ^1.0.2
  image_picker: ^0.6.7+17
  firebase_ml_vision: ^0.9.10
  image_cropper: ^1.4.0
  firebase_core: ^0.3.4
  cloud_firestore: ^0.9.13+1
  expandable: ^5.0.1
  web_scraper:


如果需要任何额外的信息,请在评论中告诉我

qxgroojn

qxgroojn1#

经过多次研究,我找到了一个解决方案,

第一步:我删除了所有cocoapod和它的目录使用

gem list --local | grep cocoapods
sudo gem uninstall EACH_OF_THEM  // here EACH_OF_THEM means all the listed cocoapods
rm -rf ~/.cocoapods

字符串

第二步:安装HomeBrew

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

步骤3:使用HomeBrew安装cocoapods

brew install cocoapods

第四步:删除Podfile.lock

cd ios
rm Podfile.lock

第五步:安装pod

pod install --repo-update


下载和安装所有依赖项将花费大量时间。
现在,如果我运行flutter项目使用flutter run .它成功

...
Running pod install...
Running Xcode build...
...


参考链接:dev.to

eqqqjvef

eqqqjvef2#

我的Xcode版本是15.0.1,M1苹果芯片和模拟器是iPhone 15 plus。我在安装Firebase后遇到了同样的问题,this链接帮助我解决了这个问题。互联网速度是问题。

相关问题