Warning: CocoaPods not installed. Skipping pod install.CocoaPods is used to retrieve the i0S and mac

昨晚升级macos发现flutter项目运行不了报错如下

Warning: CocoaPods not installed. Skipping pod install.CocoaPods is used to retrieve the i0S and mac0S platform side's plugin code that respondsWithout Cocoapods, plugins will not work on ios or macOsvour pluginFor more info, see https://flutter .dev/platform-pluginsTo install see https://guides,cocoapods.org/using/getting-started.html#installationinstructions
Exception; CocoaPods not installed or not in valid state

CocoaPods 明明是安装过的咋还报错呢?

pod --version

zsh:command not found:pod

果然有问题,重装试试

sudo gem install cocoapods

还是不行。考虑环境变量有问题,果然PATH没了

vi .zshrc
export PATH="/usr/local/opt/ruby/bin:$PATH"
export PATH="/usr/local/lib/ruby/gems/3.1.0/bin:$PATH"
esc
:wq
source .zshrc
pod --version
pod setup

flutter run ok了

猜你喜欢

转载自blog.csdn.net/qq910689331/article/details/129385942