我正在尝试使用cocoapods的OpenCV Framework
我在编写pod install时显示错误
无法找到
的规范OpenCV
任何人都可以帮我解决这个问题吗?
# 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 'Driver App' do
pod 'AFNetworking', '~> 2.6.3'
pod 'CLImageEditor'
pod 'OpenCV'
end
target 'Driver AppTests' do
end
答案 0 :(得分:0)
试试这个
# 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 'Driver App' do
pod 'AFNetworking', '~> 2.6.3'
pod 'CLImageEditor', '~> 0.1'
pod 'OpenCV', '~> 3.0'
end
target 'Driver AppTests' do
end