当我输入
时 $ pod install
在终端我收到此错误:
[!]无法找到
的规范SFFocusViewLayout (~> 3.0)
[!] CocoaPods无法更新
master
回购。如果这是意外的问题并且坚持你可以检查它运行`pod repo update --verbose
这是我的podfile:
# Uncomment this line to define a global platform for your project
# platform :ios, "8.0"
# Uncomment this line if you're using Swift
use_frameworks!
target "vid starter" do
pod "SFFocusViewLayout", "~> 3.0"
end
target "vid starterTests" do
end
有什么不对吗?
答案 0 :(得分:1)
正如错误所暗示的那样提示:pod repo update --verbose
,并查看它告诉您的信息。
另一方面,目前Cocoapods,ruby 2.3和OS X El Capitan似乎存在问题。
如果您已经通过gem安装了Cocoapods,您可以将其卸载并通过自制程序重新安装。这对我来说是固定的,显然是因为自制软件不使用ruby 2.3 ......
sudo gem uninstall cocoapods
brew install cocoapods
我希望这会有所帮助。