[!] Invalid `Podfile` file: undefined method `exists?' for File:Class.

406 阅读1分钟

环境: MBP M1

Flutter: 2.10.5 Cocoapods: 1.14.2 Ruby: 3.2.2

执行:

$ pod install

报如下错误

[!] Invalid Podfile file: undefined method `exists?' for File:Class.

修正方法 找到文件: path/to/flutter/packages/flutter_tools/bin/podhelper.rb path/to/flutter/project/[.ios|ios]/Flutter/podhelper.rb

return [] unless File.exists? file_path

修改为

return [] unless File.exist? file_path