当我尝试设置SDWebImage时,pod安装无法正常工作

时间:2016-06-06 03:34:43

标签: ios cocoapods

这让我非常沮丧,我不知道问题是什么。这是我第一次尝试使用cocoapods。我在我的项目文件夹中“pod init”,然后我在“pod install”之后出现错误:

Error message

以下是我将Podfile编辑为:

# Uncomment this line to define a global platform for your project
platform :ios, '8.0'

target 'Bulpy' do
  # Comment this line if you're not using Swift and don't want to use dynamic frameworks
  use_frameworks!

  # Pods for Bulpy
  pod 'SDWebImage', '~>3.8'

  target 'BulpyTests' do
    inherit! :search_paths
    # Pods for testing
  end

  target 'BulpyUITests' do
    inherit! :search_paths
    # Pods for testing
  end

end

以下是SDWebImage的链接: link to SDWebImage on Github

请帮忙。关于这个问题我在网上找不到任何东西:(

2 个答案:

答案 0 :(得分:3)

我有同样的错误。 我的CocoaPod版本是1.0.0,它给了我同样的错误,对于版本3.8的SDWebImage。 所以我删除了版本号(只保留了#SD; SDWebImage'),然后安装了一个pod并安装了版本3.76

我的假设是SDWebImage版本3.8不适用于CocoaPods 1.0.0版。

我希望它有所帮助。

答案 1 :(得分:1)

SDWebImage还没有使用cocoapods的v3.8。请参阅here,可用atm的pod版本为3.7.6

enter image description here