Ios ld:在XCode中找不到-lPods的库

Ios ld:在XCode中找不到-lPods的库,ios,cocoapods,Ios,Cocoapods,我正在尝试建立一个大约在2015年9月开发的项目。在设备上运行时出现以下错误 ld: library not found for -lPods clang: error: linker command failed with exit code 1 我有一个Podfile.lock,它有当时使用的libs版本。但我使用的是最新的CoCoapod(v1.21.1)。假设这能解决问题,我安装了Cocoapods(V0.39.0),那是当时的版本。但有以下错误, [!] Unable to load

我正在尝试建立一个大约在2015年9月开发的项目。在设备上运行时出现以下错误

ld: library not found for -lPods
clang: error: linker command failed with exit code 1
我有一个Podfile.lock,它有当时使用的libs版本。但我使用的是最新的CoCoapod(v1.21.1)。假设这能解决问题,我安装了Cocoapods(V0.39.0),那是当时的版本。但有以下错误,

[!] Unable to load a specification for plugin `/Library/Ruby/Gems/2.0.0/gems/cocoapods-deintegrate-1.0.1`
Updating local specs repositories 
[!] The `master` repo requires CocoaPods 1.0.0 - (currently using 0.39.0)
Update CocoaPods, or checkout the appropriate tag in the repo.
所以我安装了CocoaPods(V1.0.0),但得到了相同的错误

ld: library not found for -lPods
clang: error: linker command failed with exit code 1
感谢您的帮助。谢谢

更新 这是播客文件的内容

platform :ios, '7.0'
# source 'git@bitbucket.org:****dev/****-ios-spec-pod.git'
source 'https://github.com/CocoaPods/Specs.git'
#source 'https://bitbucket.org/****dev/****-ios-spec-pod.git'

# to test Pod :path => '~/Documents/...'

xcodeproj '****/****.xcodeproj'

# ignore all warnings from all pods
inhibit_all_warnings!

target "****" do 
pod 'SVProgressHUD'
pod 'AFNetworkActivityLogger'
pod 'FBSDKCoreKit'
pod 'FBSDKLoginKit'
pod 'FBSDKShareKit'
pod 'APAvatarImageView'
pod '****-iOS-SDK-API', :path => '~/Documents/****_dev/****-ios-sdk-api-pod'
pod 'PSAlertView'
pod 'UITextField+Shake'
pod 'HexColors', '~> 2.2.1'
pod 'TSMessages'
pod 'TPKeyboardAvoiding'
pod 'DateTools'
pod 'SDWebImage'
pod 'PureLayout'
pod 'SZTextView'
pod 'ALAssetsLibrary-CustomPhotoAlbum', '~> 1.3'
pod 'UIActionSheet-Blocks', '~> 1.0'
pod 'DTPickerPresenter', '~> 0.2.0'
pod 'CCMPopup'
pod 'FranklySDK'
pod 'Instabug'
pod 'MZTimerLabel'
pod 'Google/Analytics'
end 

在这里,*****=我的项目名称

您是否需要更新pod commandtry命令
rvm使用系统
然后重新启动终端并尝试
pod安装
您能给我看一下pod文件吗?