【解决】Your Podfile requires that t
2020-11-13 本文已影响0人
Matt_Z_
[!] Your Podfile requires that the plugin
XXX
be installed. Please install it and try installation again
如果您遇到上面的问题使用 'pod repo update' 之后 pod install ,不能解决,那么请尝试下面的【解决方案】
$ pod repo update
$ pod install
【解决方案】使用 sudo gem install + XXX
例如:
[!] Your Podfile requires that the plugin cocoapods-acknowledgements
be installed. Please install it and try installation again.
# 例如上面的这个是说 cocoapods-acknowledgements 有问题,我们只要调用下面的方法,重新安装一下就可以了
$ sudo gem install cocoapods-acknowledgements
# 然后再调用 pod install
$ pod install