最近升級到XCode 8.1試圖爲新項目安裝Alamofire窗格。 Podfile:Alamofire安裝失敗 - Xcode 8.1
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '10.0'
target 'app' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
# Pods for app
pod 'Alamofire',
:git => 'https://github.com/Alamofire/Alamofire.git',
:branch => 'swift3'
end
我的終端迴應: image
所以我該怎麼辦?
--Update-- 也試過pod 'Alamofire', '~> 4.0'
here is the result
我做了pod repo update
它不會在所有
參見[安裝Alamofire 4](https://github.com/Alamofire/Alamofire#installation)和[遷移指南(https://github.com/Alamofire/Alamofire/blob/master/Documentation /Alamofire%204.0%20Migration%20Guide.md) – Moritz
@EricAya這就是我得到的'分析依賴關係 [!]無法滿足以下要求: - 'Podfile'所需的'Alamofire(〜> 4.0)' 您的規範資源中沒有包含滿足依賴關係的規範:'Alamofire(〜> 4.0)'。 您可以: *您可以使用'pod repo update'更新的過期源回購站。 *錯誤輸入了名稱或版本。 *未添加將Podspec承載到您的Podfile的源回購。 注意:從CocoaPods 1.0開始,'pod repo update'默認情況下不會在'pod install'上發生。 'pod version is 1.1.1 – VahidGR
你應該做'pod repo update'然後'pod install',這是需要更新可用的pod列表。 – Moritz