Searching for inspections failed: undefined method `map‘ for nil:NilClass报错

执行flutter run的时候报错:Searching for inspections failed: undefined method `map‘ for nil:NilClass

解决办法:

开始的时候参考了网上的解决方案:

sudo arch -x86_64 gem install ffi

但是没有成功。

最后执行:

sudo gem uninstall ffi && sudo gem install ffi -- --enable-libffi-alloc
rm -rf ~/.cocoapods/repos/trunk/

重新执行flutter run 错误解决了

猜你喜欢

转载自blog.csdn.net/mldxs/article/details/130518412