我正在运行CocoaPods 0.39.0
,当我运行pod install
时出现以下错误:
[!] Invalid `Podfile` file: undefined method `install!' for #<Pod::Podfile:0x007fc3e993c510>.
Updating CocoaPods might fix the issue.
这是我Podfile
中导致错误的行:
install! 'cocoapods', :deterministic_uuids => false
我尝试运行gem install cocoapods
来更新所有内容,只是为了确保不是问题所在。它没有帮助。
install!
在Cocoapods文档中列为有效命令。它是否在0.39.0
中不可用?解决方案是否更新到当前的测试版?
答案 0 :(得分:0)
在进一步查看CocoaPods文档之后,似乎install!
命令仅在测试版中可用。运行sudo gem install cocoapods --pre
然后重新安装pod后,一切正常。